8 lines
145 B
TypeScript
8 lines
145 B
TypeScript
export interface OAuthTokenResponse {
|
|
access_token: string
|
|
refresh_token: string
|
|
token_type: string
|
|
expires_in: number
|
|
scope: string
|
|
}
|