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

7 lines
118 B
TypeScript

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