server/types/entities-2/token.ts
2024-04-14 00:53:21 -10:00

7 lines
123 B
TypeScript

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