server/types/entities/token.ts

7 lines
106 B
TypeScript
Raw Normal View History

2023-09-11 05:31:08 +02:00
export type Token = {
access_token: string;
token_type: string;
scope: string;
created_at: number;
};