UNPKG

node-seal

Version:

Homomorphic Encryption for TypeScript or JavaScript using Microsoft SEAL

6 lines (5 loc) 192 B
import { Library } from '../implementation/seal'; export type Loader = { readonly library: Library; }; export declare const createLoader: (bin: () => Promise<Library>) => Promise<Loader>;