Sharkey/packages/megalodon/src/entities/token.ts
2023-09-23 18:49:47 +02:00

8 lines
133 B
TypeScript

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