@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.
@@ -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 };