UNPKG

inject-body-webpack-plugin

Version:

Webpack plugin that injects a custom string into the body of the html-webpack-plugin output.

13 lines 308 B
declare module "inject-body-webpack-plugin" { export type Options = { content: string; position: string; }; /** * @param [options] - Plugin options */ export class InjectBodyPlugin { constructor(options?: Options); apply(compiler: any): void; } }