7 lines
305 B
TypeScript
7 lines
305 B
TypeScript
/**
|
|
* Load a bundle for a URL using fetch + eval on native and script tag injection on web.
|
|
*
|
|
* @param url Given a statement like `import('./Bacon')` `bundlePath` would be `Bacon`.
|
|
*/
|
|
export declare function fetchThenEvalAsync(url: string): Promise<void>;
|
|
//# sourceMappingURL=fetchThenEvalJs.d.ts.map
|