mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
25 lines
596 B
TypeScript
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;
|