lfk-client-js/dist/models/Auth.d.ts

7 lines
166 B
TypeScript
Raw Normal View History

2020-12-22 14:17:25 +00:00
export declare type Auth = {
access_token: string;
refresh_token: string;
access_token_expires_at: number;
refresh_token_expires_at: number;
};