diff options
Diffstat (limited to 'src/types')
| -rw-r--r-- | src/types/Scotsoun.d.ts | 14 | ||||
| -rw-r--r-- | src/types/TranslationsDictionary.d.ts | 2 |
2 files changed, 8 insertions, 8 deletions
diff --git a/src/types/Scotsoun.d.ts b/src/types/Scotsoun.d.ts index 7ef2f50..64b0ab1 100644 --- a/src/types/Scotsoun.d.ts +++ b/src/types/Scotsoun.d.ts @@ -1,4 +1,4 @@ -import type { defaultLocale } from '../i18n/locales'; +import type { defaultLocale } from '$i18n/locales'; import type Date from './Date'; import type Locale from './Locale'; import type Price from './Price'; @@ -6,15 +6,15 @@ import type Price from './Price'; type Scotsoun = { title: string; subtitle?: string; - 'long-name': string; + longName: string; author?: string; - 'cd-count': number; + cdCount: number; price: Price; - 'scotsoun-id': string; + scotsounId: string; description?: { [key in Locale]?: string } & { [key in typeof defaultLocale]: string }; - 'cover-artist'?: string; - 'track-list'?: string[]; - 'release-date'?: Date; + coverArtist?: string; + trackList?: string[]; + releaseDate?: Date; }; export default Scotsoun; diff --git a/src/types/TranslationsDictionary.d.ts b/src/types/TranslationsDictionary.d.ts index d62947c..d9d7e44 100644 --- a/src/types/TranslationsDictionary.d.ts +++ b/src/types/TranslationsDictionary.d.ts @@ -1,4 +1,4 @@ -import type { defaultLocale } from '../i18n/locales'; +import type { defaultLocale } from '$i18n/locales'; import type Locale from './Locale'; export type Translation<Params> = (params: { [key in keyof Params]: string }) => string; |
