File: ambient.d.ts

package info (click to toggle)
node-typescript 2.1.5-1~bpo8%2B1
  • links: PTS, VCS
  • area: main
  • in suites: jessie-backports
  • size: 203,960 kB
  • sloc: sh: 11; makefile: 5
file content (25 lines) | stat: -rw-r--r-- 990 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
declare module "gulp-clone" {
    function Clone(): NodeJS.ReadWriteStream;
    namespace Clone {
        export function sink() : NodeJS.ReadWriteStream & {tap: () => NodeJS.ReadWriteStream};
    }
    export = Clone;
}

declare module "gulp-insert" {
    export function append(text: string | Buffer): NodeJS.ReadWriteStream;
    export function prepend(text: string | Buffer): NodeJS.ReadWriteStream;
    export function wrap(text: string | Buffer, tail: string | Buffer): NodeJS.ReadWriteStream;
    export function transform(cb: (contents: string, file: {path: string, relative: string}) => string): NodeJS.ReadWriteStream; // file is a vinyl file
}

declare module "into-stream" {
    function IntoStream(content: string | Buffer | (string | Buffer)[]): NodeJS.ReadableStream;
    namespace IntoStream {
        export function obj(content: any): NodeJS.ReadableStream
    }
    export = IntoStream;
}

declare module "sorcery";
declare module "travis-fold";