UNPKG

jinaga

Version:

Data management for web and mobile applications.

19 lines 540 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.AuthenticationWebClient = void 0; class AuthenticationWebClient { constructor(client) { this.client = client; } login() { return this.client.login(); } local() { throw new Error('Local device has no persistence.'); } authorize(envelopes) { return Promise.resolve(envelopes); } } exports.AuthenticationWebClient = AuthenticationWebClient; //# sourceMappingURL=authentication-web-client.js.map