frontend/types/mastodon/token.ts

7 lines
118 B
TypeScript
Raw Normal View History

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