DefinitelyTyped/types/gulp-pug/index.d.ts
2019-02-12 14:36:28 -08:00

25 lines
596 B
TypeScript

// Type definitions for gulp-pug 3.3
// Project: https://github.com/gulp-community/gulp-pug
// Definitions by: remisery <https://github.com/remisery>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
/// <reference types="node" />
import stream = require('stream');
import { Options } from 'pug';
declare function GulpPug(params?: GulpPug.Params): stream.Transform;
declare namespace GulpPug {
interface Params extends Options {
locals?: any;
data?: any;
client?: boolean;
pug?: any;
verbose?: boolean;
}
}
export = GulpPug;