gulp-print.d.ts 333 B

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