mirror of
https://github.com/Tria-plc/emaui.git
synced 2026-08-27 12:01:00 +00:00
13 lines
417 B
TypeScript
13 lines
417 B
TypeScript
import type { Compiler } from "./Compiler";
|
|
export declare class VirtualModulesPlugin {
|
|
#private;
|
|
constructor(modules?: Record<string, string>);
|
|
apply(compiler: Compiler): void;
|
|
writeModule(filePath: string, contents: string): void;
|
|
private getVirtualFileStore;
|
|
static __internal__take_virtual_files(compiler: Compiler): {
|
|
path: string;
|
|
content: string;
|
|
}[] | undefined;
|
|
}
|