api/client/types/token.ts

10 lines
155 B
TypeScript
Raw Normal View History

/**
* Mastodon API Access Token
*/
export type Token = {
access_token: string;
token_type: string;
scope: string;
created_at: number;
};