From cb08fa37096a03db3532e056aee1b1f6528ebfb7 Mon Sep 17 00:00:00 2001 From: Valentyne Stigloher Date: Tue, 1 Oct 2024 13:37:20 +0200 Subject: [PATCH] (fmt) --- src/classes.ts | 23 ++++++++++++++++++----- 1 file changed, 18 insertions(+), 5 deletions(-) diff --git a/src/classes.ts b/src/classes.ts index 130dcaa53..f673076e8 100644 --- a/src/classes.ts +++ b/src/classes.ts @@ -165,11 +165,24 @@ export interface Filter { type SourceType = '' | 'Book' | 'Article' | 'Movie' | 'Series' | 'Song' | 'Poetry' | 'Comics' | 'Game' | 'Other'; export interface SourceRaw { - id: string; pronouns: string, type: SourceType, author: string, title: string, extra: string, year: number, - fragments?: string, comment?: string | null, link?: string | null, spoiler?: boolean, - submitter?: string | null, approved: boolean, base_id?: string | null, - key?: string | null, versions?: SourceRaw[], locale?: string, - images?: string | null + id: string; + pronouns: string; + type: SourceType; + author: string; + title: string; + extra: string; + year: number; + fragments?: string; + comment?: string | null; + link?: string | null; + spoiler?: boolean; + submitter?: string | null; + approved: boolean; + base_id?: string | null; + key?: string | null; + versions?: SourceRaw[]; + locale?: string; + images?: string | null; } export class Source {