jinaga
Version:
Data management for web and mobile applications.
16 lines • 452 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.AuthenticationNoOp = void 0;
class AuthenticationNoOp {
login() {
throw new Error('No logged in user.');
}
local() {
throw new Error('No persistent device.');
}
authorize(envelopes) {
return Promise.resolve(envelopes);
}
}
exports.AuthenticationNoOp = AuthenticationNoOp;
//# sourceMappingURL=authentication-noop.js.map