UNPKG

strava-api-client

Version:

Another implementation of the Strava API 3.0.0

8 lines (7 loc) 183 B
import { Scope } from "../enums/scope.enum"; export interface IOAuthConfiguration { client_id: string; client_secret: string; redirect_uri: string; scopes: Scope[]; }