@oriolrius/grafana-business-text
Version:
Data-driven text with Markdown and Handlebars support for Grafana
20 lines (16 loc) • 489 B
TypeScript
declare module 'webpack-livereload-plugin' {
import { WebpackPluginInstance } from 'webpack';
interface LiveReloadOptions {
port?: number;
hostname?: string;
protocol?: 'http' | 'https';
delay?: number;
ignore?: RegExp | string | Array<RegExp | string>;
appendScriptTag?: boolean;
}
class LiveReloadPlugin implements WebpackPluginInstance {
constructor(options?: LiveReloadOptions);
apply(compiler: any): void;
}
export = LiveReloadPlugin;
}