bgmt 0.1.2 → 0.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,31 +0,0 @@
1
- //#region src/types.d.ts
2
- type SubjectRating = {
3
- score: number;
4
- rank: number;
5
- };
6
- type SubjectImage = {
7
- provider: 'bgm' | 'tmdb';
8
- quality: string;
9
- src: string;
10
- };
11
- type SubjectSearch = {
12
- include: string[];
13
- exclude?: string[] | null | undefined;
14
- };
15
- type BasicSubject = {
16
- id: number;
17
- title: string;
18
- platform: string;
19
- onair_date?: string | null | undefined;
20
- rating: SubjectRating;
21
- poster: string;
22
- tags: string[];
23
- search: SubjectSearch;
24
- };
25
- type FullSubject = BasicSubject & {
26
- summary: string;
27
- alias: string[];
28
- images: SubjectImage[];
29
- };
30
- //#endregion
31
- export { SubjectSearch as a, SubjectRating as i, FullSubject as n, SubjectImage as r, BasicSubject as t };