Files
web/types/tokens.ts

7 lines
124 B
TypeScript

export interface ServiceTokenResponse {
access_token: string
scope?: string
token_type: string
expires_in: number
}