-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.d.ts
36 lines (34 loc) · 898 Bytes
/
index.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
declare module "anitomyscript" {
export interface AnitomyResult {
file_name: string;
anime_season?: string;
season_prefix?: string;
anime_title?: string;
anime_type?: string;
anime_year?: string;
audio_term?: string;
device_compatibility?: string;
episode_number?: string;
episode_number_alt?: string;
episode_prefix?: string;
episode_title?: string;
file_checksum?: string;
file_extension?: string;
language?: string;
other?: string;
release_group?: string;
release_information?: string;
release_version?: string;
source?: string;
subtitles?: string;
video_resolution?: string;
video_term?: string;
volume_number?: string;
volume_prefix?: string;
unknown?: string;
}
function parse(
input: string | string[]
): Promise<AnitomyResult[] | AnitomyResult>;
export default parse;
}