@auth0/auth0-spa-js
Version:
Auth0 SDK for Single Page Applications using Authorization Code Grant Flow with PKCE
8 lines (7 loc) • 313 B
TypeScript
import { WorkerRefreshTokenMessage } from './worker.types';
/**
* Sends the specified message to the web worker
* @param message The message to send
* @param to The worker to send the message to
*/
export declare const sendMessage: (message: WorkerRefreshTokenMessage, to: Worker) => Promise<unknown>;