@mercury-labs/auth
Version:
Mercury framework auth library. It supports local auth, jwt with both bearer token and cookie, basic auth.
11 lines • 354 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.UserLoggedInEvent = void 0;
class UserLoggedInEvent {
constructor(user, isImpersonated) {
this.user = user;
this.isImpersonated = isImpersonated;
}
}
exports.UserLoggedInEvent = UserLoggedInEvent;
//# sourceMappingURL=user-logged-in.event.js.map
;