返回 AiToEarn
comment.ts
1 export enum VideoUTypes {
2 Little = 0,
3 Big = 1,
4 }
5
6 export interface AccessToken {
7 access_token: string;
8 expires_in: number;
9 refresh_token: string;
10 scopes: string[];
11 token_type: string;
12 id_token: string;
13 }
14
14 lines TYPESCRIPT