mirror of
https://github.com/EstrellaXD/Auto_Bangumi.git
synced 2026-04-01 01:30:27 +08:00
19 lines
281 B
TypeScript
19 lines
281 B
TypeScript
export interface LoginSuccess {
|
|
access_token: string;
|
|
token_type: string;
|
|
expire: number;
|
|
}
|
|
|
|
export interface Logout {
|
|
message: 'logout success';
|
|
}
|
|
|
|
export interface Update {
|
|
message: 'update success';
|
|
}
|
|
|
|
export interface User {
|
|
username: string;
|
|
password: string;
|
|
}
|