UNPKG

529 BTypeScriptView Raw
1/// <reference types="node" />
2/// <reference types="vinyl" />
3import * as stream from 'stream';
4import * as vinyl from 'vinyl';
5/**
6 * Transforms all inline styles in `html` with `filter`
7 */
8export declare function html(text: string): string;
9export declare function css(text: string): string;
10export declare class GulpTransform extends stream.Transform {
11 constructor();
12 _transform(file: vinyl, _encoding: string, callback: (error?: Error, file?: vinyl) => void): void;
13}
14export declare function gulp(): GulpTransform;