server/types/entities/token.ts
2023-09-12 10:48:10 -10:00

7 lines
111 B
TypeScript

export interface APIToken {
access_token: string;
token_type: string;
scope: string;
created_at: number;
}