UNPKG

@lynx-js/template-webpack-plugin

Version:

Simplifies creation of Lynx template files to serve your webpack bundles

14 lines (13 loc) 461 B
import type { Compilation, Compiler } from 'webpack'; export declare class WebEncodePlugin { static name: string; static BEFORE_ENCODE_HOOK_STAGE: number; static ENCODE_HOOK_STAGE: number; apply(compiler: Compiler): void; /** * The deleteDebuggingAssets delete all the assets that are inlined into the template. */ deleteDebuggingAssets(compilation: Compilation, assets: ({ name: string; } | undefined)[]): void; }