Files
DefinitelyTyped/gulp-sass/gulp-sass.d.ts
Phips Peter 429c0c5c7d Adding a bunch of gulp utilities
This should allow a developer to write a gulpfile in TypeScript to
compile a TypeScript project.
2015-01-28 17:23:29 -08:00

49 lines
1.3 KiB
TypeScript

// Type definitions for gulp-sass
// Project: https://github.com/dlmanning/gulp-sass
// Definitions by: Asana <https://asana.com>
// Definitions: https://github.com/borisyankov/DefinitelyTyped
/// <reference path="../node/node.d.ts"/>
declare module "gulp-sass" {
interface SassResults {
css: string;
map: string;
stats: {
entry: string;
start: Date;
end: Date;
duration: number;
includedFiles: string[];
}
}
interface SassOptions {
file?: string;
data?: string;
success?: (results: SassResults) => any;
error?: (err: Error) => any;
includePaths?: string[];
imagePaths?: string[];
indentedSyntax?: boolean;
omitSourceMapUrl?: boolean;
outFile?: string;
outputStyle?: string;
precision?: number;
sourceComments?: boolean;
sourceMap?: boolean | string;
sourceMapEmbed?: boolean;
sourceMapContents?: boolean;
}
interface Options extends SassOptions {
errLogToConsole?: boolean;
onSuccess?: (css: string) => any;
onError?: (err: Error) => any;
sync?: boolean;
}
function sass(opts?: Options): NodeJS.ReadWriteStream;
export = sass;
}