@web/rollup-plugin-html
Version:
Rollup plugin for bundling HTML files
17 lines (14 loc) • 334 B
text/typescript
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;
}