Files
DefinitelyTyped/types/webpack-hot-middleware/index.d.ts
Chris Abrams 8815592a2a Modify three options missing from webpack-dev-middleware and webpack-hot-middleware (#27116)
* Add writeToDisk option

* Add reload option

* make sure writeToDisk can also be a function

* enable index option to be boolean type
2018-07-09 11:21:20 -07:00

33 lines
968 B
TypeScript

// Type definitions for webpack-hot-middleware 2.16
// Project: https://github.com/glenjamin/webpack-hot-middleware#readme
// Definitions by: Benjamin Lim <https://github.com/bumbleblym>
// Ron Martinez <https://github.com/icylace>
// Chris Abrams <https://github.com/chrisabrams>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
// TypeScript Version: 2.3
import { NextHandleFunction } from 'connect';
import * as webpack from 'webpack';
export = WebpackHotMiddleware;
declare function WebpackHotMiddleware(
compiler: webpack.ICompiler,
options?: WebpackHotMiddleware.Options
): NextHandleFunction & WebpackHotMiddleware.EventStream;
declare namespace WebpackHotMiddleware {
interface Options {
log?: false | Logger;
path?: string;
heartbeat?: number;
reload?: boolean;
}
type Logger = (message?: any, ...optionalParams: any[]) => void;
interface EventStream {
publish(payload: any): void;
}
}