blob: 010f89c02ca2d516953087c5b153840d1a8eaaf3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
import type Date from './Date';
import type LallansIssueNumber from './LallansIssueNumber';
import type Price from './Price';
type LallansIssue = {
issueNumber: LallansIssueNumber;
img: ImageMetadata;
issueName: string;
uploadDate: Date;
price: Price;
description: {
sco: string;
'en-GB': string;
};
coverArtist?: string;
trackList?: string[];
} & ({ contributors: Contributor[] } | { contributions: Contribution[] } | Record<string, never>);
export type Contributor = string;
export type Contribution = { author?: string; title: string };
export default LallansIssue;
|