mirror of
https://github.com/Tria-plc/emaui.git
synced 2026-08-29 18:48:12 +00:00
14 lines
436 B
TypeScript
14 lines
436 B
TypeScript
import * as webpack from "webpack";
|
|
|
|
//#region src/plugins/RemotePublicPathRuntimeModule.d.ts
|
|
declare const RuntimeModule: typeof webpack.RuntimeModule;
|
|
declare class AutoPublicPathRuntimeModule extends RuntimeModule {
|
|
private options;
|
|
constructor(options: any);
|
|
/**
|
|
* @returns {string} runtime code
|
|
*/
|
|
generate(): string;
|
|
}
|
|
export = AutoPublicPathRuntimeModule;
|
|
//# sourceMappingURL=RemotePublicPathRuntimeModule.d.ts.map
|