UNPKG

quria

Version:

A user-friendly Destiny 2 API Wrapper written with TypeScript and approved by -Axis Minds- Oryx.

13 lines (12 loc) 277 B
export interface TokenResponse { access_token: string; token_type: string; expires_in: number; refresh_token: string; refresh_expires_in: number; membership_id: string; } export interface TokenError { error: string; error_description: string; }