megalodon/megalodon/src/mastodon/entities/token.ts
2022-01-02 16:28:11 +09:00

9 lines
146 B
TypeScript

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