@point3/logto-module
Version:
포인트3 내부 logto Authentication 모듈입니다
16 lines • 591 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.GrantType = exports.Prompt = void 0;
var Prompt;
(function (Prompt) {
Prompt["None"] = "none";
Prompt["Consent"] = "consent";
Prompt["Login"] = "login";
})(Prompt || (exports.Prompt = Prompt = {}));
var GrantType;
(function (GrantType) {
GrantType["AuthorizationCode"] = "authorization_code";
GrantType["ClientCredentials"] = "client_credentials";
GrantType["RefreshToken"] = "refresh_token";
})(GrantType || (exports.GrantType = GrantType = {}));
//# sourceMappingURL=config.js.map