mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
13 lines
429 B
TypeScript
13 lines
429 B
TypeScript
///<reference path="webpack-stream.d.ts" />
|
|
///<reference path="./../node/node.d.ts" />
|
|
|
|
import webpackStream = require("webpack-stream");
|
|
import webpack = require("webpack");
|
|
|
|
let output: NodeJS.ReadWriteStream;
|
|
|
|
output = webpackStream();
|
|
output = webpackStream({ entry: '' });
|
|
output = webpackStream({ entry: '' }, webpack);
|
|
output = webpackStream({ entry: '' }, webpack, (error: Error, stats: webpack.compiler.Stats) => { });
|