9 lines
145 B
TypeScript
9 lines
145 B
TypeScript
|
|
namespace PleromaEntity {
|
||
|
|
export type Token = {
|
||
|
|
access_token: string
|
||
|
|
token_type: string
|
||
|
|
scope: string
|
||
|
|
created_at: number
|
||
|
|
}
|
||
|
|
}
|