@tscircuit/eval 0.0.839 → 0.0.841
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/blob-url.js +1 -1
- package/dist/eval/index.js +30 -1
- package/dist/lib/index.d.ts +3 -1
- package/dist/lib/index.js +63 -3
- package/dist/platform-config/getPlatformConfig.js +30 -1
- package/dist/webworker/entrypoint.js +1 -1
- package/dist/worker.d.ts +3 -1
- package/dist/worker.js +35 -4
- package/package.json +1 -1
package/dist/lib/index.d.ts
CHANGED
|
@@ -8902,6 +8902,8 @@ declare global {
|
|
|
8902
8902
|
}
|
|
8903
8903
|
var TSCIRCUIT_GLOBAL_CIRCUIT_WORKER: CircuitWebWorker | undefined;
|
|
8904
8904
|
}
|
|
8905
|
+
declare const getWebWorkerEntrypointCdnUrls: (evalVersion?: string) => string[];
|
|
8906
|
+
declare const fetchWebWorkerEntrypointBlobFromCdn: (evalVersion?: string, verbose?: boolean) => Promise<Blob>;
|
|
8905
8907
|
declare const createCircuitWebWorker: (configuration: Partial<WebWorkerConfiguration>) => Promise<CircuitWebWorker>;
|
|
8906
8908
|
|
|
8907
8909
|
declare const getPossibleEntrypointComponentPaths: (fsMap: Record<string, string>) => string[];
|
|
@@ -8910,4 +8912,4 @@ declare const getPlatformConfig: (overrides?: Partial<PlatformConfig>, options?:
|
|
|
8910
8912
|
easyEdaProxyConfig?: EasyEdaProxyConfig;
|
|
8911
8913
|
}) => PlatformConfig;
|
|
8912
8914
|
|
|
8913
|
-
export { CircuitRunner, type CircuitWebWorker, STATIC_ASSET_EXTENSIONS, type WebWorkerConfiguration, createCircuitWebWorker, getImportsFromCode, getPlatformConfig, getPossibleEntrypointComponentPaths, isStaticAssetPath, runTscircuitCode, runTscircuitModule };
|
|
8915
|
+
export { CircuitRunner, type CircuitWebWorker, STATIC_ASSET_EXTENSIONS, type WebWorkerConfiguration, createCircuitWebWorker, fetchWebWorkerEntrypointBlobFromCdn, getImportsFromCode, getPlatformConfig, getPossibleEntrypointComponentPaths, getWebWorkerEntrypointCdnUrls, isStaticAssetPath, runTscircuitCode, runTscircuitModule };
|