@sync-in/server
Version:
The secure, open-source platform for file storage, sharing, collaboration, and sync
25 lines (24 loc) • 762 B
JavaScript
/*
* Copyright (C) 2012-2025 Johan Legrand <johan.legrand@sync-in.com>
* This file is part of Sync-in | The open source file sync and share solution
* See the LICENSE file for licensing details
*/ "use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
Object.defineProperty(exports, "TOKEN_TYPE", {
enumerable: true,
get: function() {
return TOKEN_TYPE;
}
});
var TOKEN_TYPE = /*#__PURE__*/ function(TOKEN_TYPE) {
TOKEN_TYPE["ACCESS"] = "access";
TOKEN_TYPE["ACCESS_2FA"] = "access_2fa";
TOKEN_TYPE["REFRESH"] = "refresh";
TOKEN_TYPE["WS"] = "ws";
TOKEN_TYPE["CSRF"] = "csrf";
TOKEN_TYPE["CSRF_2FA"] = "csrf_2fa";
return TOKEN_TYPE;
}({});
//# sourceMappingURL=token.interface.js.map