easy-social-auth
Version:
A flexible, standalone package for social authentication using Google, Facebook & Twitter
9 lines (8 loc) • 329 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.TokenTypeEnum = void 0;
var TokenTypeEnum;
(function (TokenTypeEnum) {
TokenTypeEnum["REFRESH_TOKEN"] = "refresh_token";
TokenTypeEnum["ACCESS_TOKEN"] = "access_token";
})(TokenTypeEnum || (exports.TokenTypeEnum = TokenTypeEnum = {}));