server/types/mastodon/token.ts

7 lines
118 B
TypeScript
Raw Normal View History

2024-04-14 12:53:21 +02:00
export type Token = {
2024-04-07 07:30:49 +02:00
access_token: string;
token_type: string;
scope: string;
created_at: number;
2024-04-14 12:53:21 +02:00
};