UNPKG

350 BTypeScriptView Raw
1import { Plugin, Compiler } from 'webpack';
2export interface PiletWebpackPluginOptions {
3 variables?: Record<string, string>;
4}
5export declare class PiletWebpackPlugin implements Plugin {
6 private piletPackage;
7 private options;
8 constructor(piletPackage: any, options?: PiletWebpackPluginOptions);
9 apply(compiler: Compiler): void;
10}