7 lines
160 B
Plaintext
7 lines
160 B
Plaintext
export type ResponseAuth = {
|
|
access_token: string;
|
|
refresh_token: string;
|
|
access_token_expires_at: number;
|
|
refresh_token_expires_at: number;
|
|
};
|