Searched refs:GrantType (Results 1 – 8 of 8) sorted by relevance
| /expo/packages/expo-auth-session/build/ |
| H A D | TokenRequest.types.js | 28 export var GrantType; variable 29 (function (GrantType) { argument 35 GrantType["AuthorizationCode"] = "authorization_code"; 41 GrantType["Implicit"] = "implicit"; 47 GrantType["RefreshToken"] = "refresh_token"; 53 GrantType["ClientCredentials"] = "client_credentials"; 54 })(GrantType || (GrantType = {}));
|
| H A D | TokenRequest.d.ts | 3 import { AccessTokenRequestConfig, GrantType, RefreshTokenRequestConfig, RevokeTokenRequestConfig, … 56 grantType: GrantType; 61 constructor(request: any, grantType: GrantType); 79 grantType: GrantType; 98 grantType: GrantType;
|
| H A D | TokenRequest.types.d.ts | 110 export declare enum GrantType { enum
|
| H A D | TokenRequest.js | 6 import { GrantType, } from './TokenRequest.types'; 216 super(options, GrantType.AuthorizationCode); 251 super(options, GrantType.RefreshToken);
|
| H A D | TokenRequest.js.map | 1 …GrantType,\n RefreshTokenRequestConfig,\n RevokeTokenRequestConfig,\n ServerTokenResponseConfig…
|
| H A D | TokenRequest.types.js.map | 1 …0](https://tools.ietf.org/html/rfc6749#appendix-A.10)\n */\nexport enum GrantType {\n /**\n * U…
|
| /expo/packages/expo-auth-session/src/ |
| H A D | TokenRequest.types.ts | 123 export enum GrantType { enum
|
| H A D | TokenRequest.ts | 10 GrantType, 167 public grantType: GrantType 274 super(options, GrantType.AuthorizationCode); 319 super(options, GrantType.RefreshToken);
|