Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
@types/gulp-sass
Advanced tools
TypeScript definitions for gulp-sass
npm install --save @types/gulp-sass
This package contains type definitions for gulp-sass (https://github.com/dlmanning/gulp-sass).
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/gulp-sass.
/// <reference types="node"/>
import { Options } from "node-sass";
interface SassResults {
css: string;
map: string;
stats: {
entry: string;
start: Date;
end: Date;
duration: number;
includedFiles: string[];
};
}
interface SassOptions extends Options {
success?: ((results: SassResults) => any) | undefined;
error?: ((err: Error) => any) | undefined;
imagePaths?: string[] | undefined;
}
interface GulpSassOptions extends SassOptions {
errLogToConsole?: boolean | undefined;
onSuccess?: ((css: string) => any) | undefined;
onError?: ((err: Error) => any) | undefined;
sync?: boolean | undefined;
}
interface GulpSass {
(opts?: GulpSassOptions): NodeJS.ReadWriteStream;
logError(error?: string): void;
sync(options?: GulpSassOptions): NodeJS.ReadWriteStream;
}
type Compiler = any;
interface GulpSassFactory {
(compiler: Compiler): GulpSass;
}
declare var _tmp: GulpSassFactory;
export = _tmp;
These definitions were written by Asana, and Yuma Hashimoto.
FAQs
TypeScript definitions for gulp-sass
The npm package @types/gulp-sass receives a total of 12,970 weekly downloads. As such, @types/gulp-sass popularity was classified as popular.
We found that @types/gulp-sass demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.