server/types/entities/token.ts

7 lines
111 B
TypeScript
Raw Normal View History

2023-09-12 22:48:10 +02:00
export interface APIToken {
2023-09-11 05:31:08 +02:00
access_token: string;
token_type: string;
scope: string;
created_at: number;
2023-09-11 05:46:20 +02:00
}