mirror of
https://github.com/wassname/DefinitelyTyped.git
synced 2026-08-24 11:29:30 +08:00
deleted definitions to split PR
This commit is contained in:
@@ -1,25 +0,0 @@
|
||||
/// <reference path="./gulp-jade.d.ts"/>
|
||||
/// <reference path="../gulp/gulp.d.ts"/>
|
||||
/// <reference path="../jade/jade.d.ts"/>
|
||||
|
||||
import gulp = require("gulp");
|
||||
import jade = require("gulp-jade");
|
||||
|
||||
|
||||
gulp.task('check1', function() {
|
||||
gulp.src('lib/*.jade')
|
||||
.pipe(jade({
|
||||
locals: {},
|
||||
client: false
|
||||
}));
|
||||
});
|
||||
|
||||
import jadeLib = require('jade');
|
||||
|
||||
gulp.task('check2', function() {
|
||||
gulp.src('lib/*.jade')
|
||||
.pipe(jade({
|
||||
jade: jadeLib,
|
||||
pretty: true
|
||||
}));
|
||||
});
|
||||
Vendored
-24
@@ -1,24 +0,0 @@
|
||||
// Type definitions for gulp-jade
|
||||
// Project: https://github.com/phated/gulp-jade
|
||||
// Definitions by: Louis Grignon <https://github.com/lgrignon/>
|
||||
// Definitions: https://github.com/borisyankov/DefinitelyTyped
|
||||
|
||||
/// <reference path="../node/node.d.ts"/>
|
||||
|
||||
declare module "gulp-jade" {
|
||||
function GulpJade(options?: GulpJadeOptions): NodeJS.ReadWriteStream;
|
||||
|
||||
interface GulpJadeOptions {
|
||||
client?: boolean;
|
||||
|
||||
locals?: Object;
|
||||
|
||||
jade?: any;
|
||||
|
||||
pretty?: boolean;
|
||||
}
|
||||
|
||||
namespace GulpJade {
|
||||
}
|
||||
export = GulpJade;
|
||||
}
|
||||
Reference in New Issue
Block a user