Spaces:
Sleeping
Sleeping
File size: 298 Bytes
6e41657 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | export interface ParsedCredential {
nickname?: string;
avatar?: string;
biz: string;
uin: string;
key: string;
pass_ticket: string;
wap_sid2: string;
appmsg_token: string;
cookie: string;
timestamp: number;
time?: string;
valid: boolean;
added?: boolean;
}
|