api/client/types/token.ts
2024-06-06 15:51:33 -10:00

7 lines
118 B
TypeScript

export type Token = {
access_token: string;
token_type: string;
scope: string;
created_at: number;
};