node-seal
Version:
Homomorphic Encryption for TypeScript or JavaScript using Microsoft SEAL
13 lines (12 loc) • 409 B
TypeScript
import { LoaderOptions } from './seal';
export type MemoryPoolHandleDependencies = {
(): MemoryPoolHandleConstructorOptions;
};
export type MemoryPoolHandleConstructorOptions = {
(): MemoryPoolHandle;
};
export type MemoryPoolHandle = {
readonly global: any;
readonly threadLocal: any;
};
export declare const MemoryPoolHandleInit: ({ loader }: LoaderOptions) => MemoryPoolHandleDependencies;