bw-mini-app/src/sdk/types.ts

14 lines
304 B
TypeScript

export interface IToken {
accessToken: string, refreshToken: string, expiresAt: string
}
export interface IUser {
avatarUrl: string;
email: string | null;
id: string;
nickname: string;
phone: string | null
platforms: string[];
status: number;
unifiedUserId: string;
}