UNPKG

jinaga

Version:

Data management for web and mobile applications.

9 lines 413 B
import { LoginResponse } from "../http/messages"; import { FactEnvelope, FactRecord } from "../storage"; import { Authentication } from "./authentication"; export declare class AuthenticationNoOp implements Authentication { login(): Promise<LoginResponse>; local(): Promise<FactRecord>; authorize(envelopes: FactEnvelope[]): Promise<FactEnvelope[]>; } //# sourceMappingURL=authentication-noop.d.ts.map