AI
AIGIT · AI 工具站
aigit.cc
首页
精品推荐
AI成品工具
提示词
返回 AiToEarn
comment.ts
根目录
/
project
/
aitoearn-electron
/
server
/
src
/
modules
/
plat
/
twitter
/
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