UNPKG

@montferret/ferret-wasm

Version:

Ferret compiler and runtime ported to WASM

10 lines (9 loc) 264 B
import { Compiler } from './compiler'; export declare class Program { private __compiler; private __id; constructor(engine: Compiler, id: string); readonly isDestroyed: boolean; run<T = any>(params?: object): Promise<T>; destroy(): void; }