gulp-print.d.ts 333 B

1234567891011
  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;