UNPKG

modify-source-webpack-plugin

Version:

Webpack plugin for modifying modules source

14 lines (13 loc) 536 B
import { AbstractOperation } from './AbstractOperation'; export declare enum ConcatOperationType { 'start' = "start", 'end' = "end" } export declare class ConcatOperation extends AbstractOperation { readonly type: keyof typeof ConcatOperationType; readonly value: string; constructor(type: keyof typeof ConcatOperationType, value: string); getSerializableProperties(): (keyof this & string)[]; getTextProperties(): (keyof this & string)[]; static getAllowedTypes(): ConcatOperationType[]; }