meblog
Version:
A simple blog engine for personal blogging
9 lines (8 loc) • 310 B
TypeScript
/// <reference types="node" />
import stream from 'stream';
import PluginError from 'plugin-error';
export default class GulpUtils {
static through(each: (file: any, enc: any, cb: any) => void): stream.Transform;
static error(e: Error): PluginError;
static handleStreamError(): stream.Transform;
}