UNPKG
@e2y/occ-client
Version:
latest (3.0.2)
3.0.2
3.0.1
2.0.3
2.0.1
1.0.6
1.0.5
1.0.4
1.0.3
1.0.2
1.0.1
OCC client for SAP Commerce Cloud
github.com/e2y/qa-tools
e2y/qa-tools
@e2y/occ-client
/
lib
/
types
/
OAuth2TokenResponse.d.ts
10 lines
(9 loc)
•
217 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
/** * Represents the response object returned by an OAuth2 token request. */
export interface OAuth2TokenResponse { access_token: string; token_type:
'bearer'
; expires_in: number; scope: string[]; }