Files
med-notes/.pnpm-store/v10/files/37/d14cca3b529bac4156f865f0fcdc3babb1f83d6b7347c3212e6c88f0f502039f6defa6d867dfa85999721f9646da800527fe7f7d3eb53694089f852c26c063
2025-05-09 05:30:08 +02:00

26 lines
759 B
Plaintext

export class GlobalWorkerOptions {
static "__#42@#port": null;
static "__#42@#src": string;
/**
* @param {Worker | null} workerPort - Defines global port for worker process.
* Overrides the `workerSrc` option.
*/
static set workerPort(val: Worker | null);
/**
* @type {Worker | null}
*/
static get workerPort(): Worker | null;
/**
* @param {string} workerSrc - A string containing the path and filename of
* the worker file.
*
* NOTE: The `workerSrc` option should always be set, in order to prevent
* any issues when using the PDF.js library.
*/
static set workerSrc(val: string);
/**
* @type {string}
*/
static get workerSrc(): string;
}