@web/rollup-plugin-html
Version:
Rollup plugin for bundling HTML files
16 lines • 420 B
TypeScript
/// <reference types="node" />
import { ScriptModuleTag } from '../RollupPluginHTMLOptions';
export interface InputAsset {
filePath: string;
hashed: boolean;
content: Buffer;
}
export interface InputData {
html: string;
name: string;
moduleImports: ScriptModuleTag[];
inlineModules: ScriptModuleTag[];
assets: InputAsset[];
filePath?: string;
}
//# sourceMappingURL=InputData.d.ts.map