@oriolrius/grafana-business-text
Version:
Data-driven text with Markdown and Handlebars support for Grafana
22 lines (18 loc) • 577 B
TypeScript
declare module 'replace-in-file-webpack-plugin' {
import { WebpackPluginInstance } from 'webpack';
interface ReplaceInFileOptions {
files: string | string[];
from: string | RegExp | Array<string | RegExp>;
to: string | string[] | Function;
allowEmptyPaths?: boolean;
countMatches?: boolean;
encoding?: string;
dry?: boolean;
glob?: any;
}
class ReplaceInFileWebpackPlugin implements WebpackPluginInstance {
constructor(options: ReplaceInFileOptions[]);
apply(compiler: any): void;
}
export = ReplaceInFileWebpackPlugin;
}