3fd2b55406
This reverts commit 89eea5df52.
9 lines
138 B
TypeScript
9 lines
138 B
TypeScript
namespace Entity {
|
|
export type Token = {
|
|
access_token: string
|
|
token_type: string
|
|
scope: string
|
|
created_at: number
|
|
}
|
|
}
|