From 37020d847e66e57913d493716e98f4dcab749262 Mon Sep 17 00:00:00 2001 From: Joe Carstairs <65492573+Sycamost@users.noreply.github.com> Date: Sat, 12 Aug 2023 15:49:03 +0100 Subject: Applies Prettier --- src/types/LallansIssue.d.ts | 26 +++++++++++--------------- 1 file changed, 11 insertions(+), 15 deletions(-) (limited to 'src/types/LallansIssue.d.ts') diff --git a/src/types/LallansIssue.d.ts b/src/types/LallansIssue.d.ts index d8339b1..86958f3 100644 --- a/src/types/LallansIssue.d.ts +++ b/src/types/LallansIssue.d.ts @@ -2,22 +2,18 @@ import type LallansIssueNumber from './LallansIssueNumber'; import type Price from './Price'; type LallansIssue = { - issueNumber: LallansIssueNumber, - issueName: string, - price: Price, + issueNumber: LallansIssueNumber; + issueName: string; + price: Price; description: { - sco: string, - 'en-GB': string, - }, - coverArtist?: string, - trackList?: string[], -} & ( - { contributors: Contributor[] } | - { contributions: Contribution[] } | - Record -); + sco: string; + 'en-GB': string; + }; + coverArtist?: string; + trackList?: string[]; +} & ({ contributors: Contributor[] } | { contributions: Contribution[] } | Record); export type Contributor = string; -export type Contribution = { author?: string, title: string }; +export type Contribution = { author?: string; title: string }; -export default LallansIssue; \ No newline at end of file +export default LallansIssue; -- cgit v1.2.3