mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
* add 'importer' on interface SassOptions
* Lower typescript version requirement to 2.7 for node-sass.
ref. c80c69a422
* rename: Options -> GulpSassOptions
* update SassOptions by extending node-sass Options
* add latest version
18 lines
563 B
TypeScript
18 lines
563 B
TypeScript
// Type definitions for gulp-sass-variables 1.2
|
|
// Project: https://github.com/osaton/gulp-sass-variables
|
|
// Definitions by: Takesi Tokugawa <https://github.com/TokugawaTakesi>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
// TypeScript Version: 2.7
|
|
|
|
/// <reference types="node"/>
|
|
|
|
declare function gulpSassVariables(variables?: GulpSassVariables.VariableDefinitions): NodeJS.ReadWriteStream;
|
|
|
|
declare namespace GulpSassVariables {
|
|
interface VariableDefinitions {
|
|
[variableName: string]: any;
|
|
}
|
|
}
|
|
|
|
export = gulpSassVariables;
|