UNPKG

node-seal

Version:

Homomorphic Encryption for TypeScript or JavaScript using Microsoft SEAL

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