UNPKG

will-auth

Version:

authentication and authorization module

14 lines (13 loc) 420 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.Accessor = void 0; var Accessor = /** @class */ (function () { function Accessor(useruuid, userid, authtoken, userinfo) { this.useruuid = useruuid; this.userid = userid; this.authtoken = authtoken; this.userinfo = userinfo; } return Accessor; }()); exports.Accessor = Accessor;