mirror of
https://github.com/monkeytypegame/monkeytype.git
synced 2025-11-10 22:22:21 +08:00
missing type
This commit is contained in:
parent
e2d7a19c08
commit
dc3d58e1c8
1 changed files with 2 additions and 9 deletions
|
|
@ -128,18 +128,11 @@ export async function getFunbox(funbox: string): Promise<Funbox | undefined> {
|
|||
});
|
||||
}
|
||||
|
||||
type Quote = {
|
||||
text: string;
|
||||
source: string;
|
||||
length: number;
|
||||
id: number;
|
||||
group?: number;
|
||||
};
|
||||
type QuoteCollection = {
|
||||
quotes: Quote[];
|
||||
quotes: Types.Quote[];
|
||||
length?: number;
|
||||
language?: string;
|
||||
groups: number[][] | Quote[][];
|
||||
groups: number[][] | Types.Quote[][];
|
||||
};
|
||||
|
||||
let quotes: QuoteCollection;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue