blob: 55169cf38e15e08d315e591dedecc95a863cc1db (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
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;
subtitle?: string;
longName: string;
img: {
width192: ImageMetadata;
};
author?: string;
cdCount: number;
price: Price;
scotsounId: ScotsounId;
description?: { [key in Locale]?: string } & { [key in typeof defaultLocale]: string };
coverArtist?: string;
trackList?: string[];
releaseDate?: Date;
uploadDate: Date;
};
export default Scotsoun;
|