mirror of
https://gitlab.com/PronounsPage/PronounsPage.git
synced 2025-09-27 06:52:35 -04:00
(fmt)
This commit is contained in:
parent
f1849dae0e
commit
cb08fa3709
@ -165,11 +165,24 @@ export interface Filter {
|
|||||||
type SourceType = '' | 'Book' | 'Article' | 'Movie' | 'Series' | 'Song' | 'Poetry' | 'Comics' | 'Game' | 'Other';
|
type SourceType = '' | 'Book' | 'Article' | 'Movie' | 'Series' | 'Song' | 'Poetry' | 'Comics' | 'Game' | 'Other';
|
||||||
|
|
||||||
export interface SourceRaw {
|
export interface SourceRaw {
|
||||||
id: string; pronouns: string, type: SourceType, author: string, title: string, extra: string, year: number,
|
id: string;
|
||||||
fragments?: string, comment?: string | null, link?: string | null, spoiler?: boolean,
|
pronouns: string;
|
||||||
submitter?: string | null, approved: boolean, base_id?: string | null,
|
type: SourceType;
|
||||||
key?: string | null, versions?: SourceRaw[], locale?: string,
|
author: string;
|
||||||
images?: string | null
|
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 {
|
export class Source {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user