UNPKG

313 BTypeScriptView Raw
1import { WorkerRefreshTokenMessage } from './worker.types';
2/**
3 * Sends the specified message to the web worker
4 * @param message The message to send
5 * @param to The worker to send the message to
6 */
7export declare const sendMessage: (message: WorkerRefreshTokenMessage, to: Worker) => Promise<unknown>;