UNPKG

strava-api-client

Version:

Another implementation of the Strava API 3.0.0

10 lines (9 loc) 274 B
import { components } from "../../openapi/specification"; export interface IOAuthResponse { token_type: string; expires_at: number; expires_in: number; refresh_token: string; access_token: string; athlete: components["schemas"]["DetailedAthlete"]; }