diff options
| author | (quasar) nebula <qznebula@protonmail.com> | 2026-01-26 13:11:03 -0400 |
|---|---|---|
| committer | (quasar) nebula <qznebula@protonmail.com> | 2026-01-26 13:46:48 -0400 |
| commit | ca4e9b3fd53f91e1cd95c8aa20496177ec39d669 (patch) | |
| tree | 41010ff4455d44c2e791a9bf9ebadae11596afe7 /src/data/things/index.js | |
| parent | c4a2bd0e7b29abc201d40b7cdae7815a508f8681 (diff) | |
infra: rename singleton-export thing modules
Diffstat (limited to 'src/data/things/index.js')
| -rw-r--r-- | src/data/things/index.js | 25 |
1 files changed, 13 insertions, 12 deletions
diff --git a/src/data/things/index.js b/src/data/things/index.js index bf3df9a7..766ceb44 100644 --- a/src/data/things/index.js +++ b/src/data/things/index.js @@ -1,20 +1,21 @@ // Not actually the entry point for #things - that's init.js in this folder. -export * from './additional-file.js'; -export * from './additional-name.js'; +export * from './AdditionalFile.js'; +export * from './AdditionalName.js'; +export * from './ArtTag.js'; +export * from './Artist.js'; +export * from './Artwork.js'; +export * from './Contribution.js'; +export * from './Language.js'; +export * from './MusicVideo.js'; +export * from './NewsEntry.js'; +export * from './StaticPage.js'; +export * from './Track.js'; +export * from './WikiInfo.js'; + export * from './album.js'; -export * from './art-tag.js'; -export * from './artist.js'; -export * from './artwork.js'; export * from './content.js'; -export * from './contribution.js'; export * from './flash.js'; export * from './group.js'; export * from './homepage-layout.js'; -export * from './language.js'; -export * from './music-video.js'; -export * from './news-entry.js'; export * from './sorting-rule.js'; -export * from './static-page.js'; -export * from './track.js'; -export * from './wiki-info.js'; |