UNPKG

@etsoo/appscript

Version:

Applications shared TypeScript framework

14 lines (13 loc) 277 B
/** * Token authentication request data for API calls. */ export type TokenAuthRQ = { /** * The access token to be used for authentication. */ accessToken: string; /** * The scheme of the token, e.g., "Bearer". */ tokenScheme?: string; };