diff options
| author | Joe Carstairs <65492573+Sycamost@users.noreply.github.com> | 2023-08-13 19:48:30 +0100 |
|---|---|---|
| committer | Joe Carstairs <65492573+Sycamost@users.noreply.github.com> | 2023-08-13 19:48:30 +0100 |
| commit | 6728f6fe5baaaefaeb50e95a90c3491ae6484cca (patch) | |
| tree | 6242cb88f91df7f4f8e6c0ca150e54ac85a4310e /src/types/Scotsoun.d.ts | |
| parent | 8c1fff45fb5340a338416586162ac247b2b190c0 (diff) | |
Defines ScotsounId
Diffstat (limited to 'src/types/Scotsoun.d.ts')
| -rw-r--r-- | src/types/Scotsoun.d.ts | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/types/Scotsoun.d.ts b/src/types/Scotsoun.d.ts index 64b0ab1..7ae49a6 100644 --- a/src/types/Scotsoun.d.ts +++ b/src/types/Scotsoun.d.ts @@ -2,6 +2,7 @@ import type { defaultLocale } from '$i18n/locales'; import type Date from './Date'; import type Locale from './Locale'; import type Price from './Price'; +import type ScotsounId from './ScotsounId'; type Scotsoun = { title: string; @@ -10,7 +11,7 @@ type Scotsoun = { author?: string; cdCount: number; price: Price; - scotsounId: string; + scotsounId: ScotsounId; description?: { [key in Locale]?: string } & { [key in typeof defaultLocale]: string }; coverArtist?: string; trackList?: string[]; |
