UNPKG

@nori-zk/mina-token-bridge

Version:

A Mina zk-program contract allowing users to mint tokens on Nori Bridge.

11 lines (10 loc) 392 B
import type { WorkerChildParentInterface } from '../index.js'; export declare class WorkerChild implements WorkerChildParentInterface { private messageCallback?; private errorCallback?; constructor(); send(data: string): void; onMessageHandler(callback: (response: string) => void): void; onErrorHandler(callback: (error: any) => void): void; terminate(): void; }