mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
22 lines
526 B
TypeScript
22 lines
526 B
TypeScript
// Type definitions for gulp-tsd
|
|
// Project: https://github.com/moznion/gulp-tsd
|
|
// Definitions by: Keita Kagurazaka <https://github.com/k-kagurazaka>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
/// <reference types="node" />
|
|
|
|
import gulp = require('gulp');
|
|
|
|
interface IOptions {
|
|
command?: string;
|
|
latest?: boolean;
|
|
config?: string;
|
|
opts?: Object;
|
|
}
|
|
|
|
declare function tsd(opts?: IOptions, callback?: gulp.TaskCallback): NodeJS.ReadWriteStream;
|
|
|
|
declare namespace tsd { }
|
|
|
|
export = tsd;
|