UNPKG

@gdjiami/cli

Version:

CLI for build front end project.

12 lines (11 loc) 247 B
/** * interpolate enviroments in html */ import { Compiler } from 'webpack'; export default class HtmlInterpolate { private env; constructor(env: { [key: string]: string; }); apply(compiler: Compiler): void; }