UNPKG

jinaga

Version:

Data management for web and mobile applications.

8 lines 311 B
import { FactEnvelope, FactRecord } from "../storage"; export interface KeyPair { publicPem: string; privatePem: string; } export declare function generateKeyPair(): KeyPair; export declare function signFacts(keyPair: KeyPair, facts: FactRecord[]): FactEnvelope[]; //# sourceMappingURL=key-pair.d.ts.map