UNPKG

333 BTypeScriptView Raw
1/// <reference types="node" />
2import * as stream from 'stream';
3export interface FormatFunction {
4 (filepath: string): string;
5}
6export interface LogFunction {
7 (message: string): void;
8}
9export declare function setLogFunction(fn: LogFunction): void;
10export default function gulpPrint(format?: FormatFunction): stream.Stream;