返回 AiToEarn
index.ts
1 export { AccountType } from '@yikart/common'
2
3 export enum AccountStatus {
4 NORMAL = 1, // 可用
5 ABNORMAL = 0, // 不可用
6 }
7
7 lines TYPESCRIPT