Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@types/csso

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@types/csso - npm Package Compare versions

Comparing version 3.5.1 to 3.5.2

40

csso/index.d.ts

@@ -23,11 +23,11 @@ // Type definitions for csso 3.5

interface Usage {
tags?: string[];
ids?: string[];
classes?: string[];
scopes?: string[][];
tags?: string[] | undefined;
ids?: string[] | undefined;
classes?: string[] | undefined;
scopes?: string[][] | undefined;
blacklist?: {
tags?: string[];
ids?: string[];
classes?: string[];
};
tags?: string[] | undefined;
ids?: string[] | undefined;
classes?: string[] | undefined;
} | undefined;
}

@@ -40,3 +40,3 @@

*/
restructure?: boolean;
restructure?: boolean | undefined;
/**

@@ -47,3 +47,3 @@ * Enables merging of @media rules with the same media query by splitted by other rules.

*/
forceMediaMerge?: boolean;
forceMediaMerge?: boolean | undefined;
/**

@@ -53,3 +53,3 @@ * Transform a copy of input AST if true. Useful in case of AST reuse.

*/
clone?: boolean;
clone?: boolean | undefined;
/**

@@ -62,11 +62,11 @@ * Specify what comments to leave:

*/
comments?: string | boolean;
comments?: string | boolean | undefined;
/**
* Usage data for advanced optimisations.
*/
usage?: Usage;
usage?: Usage | undefined;
/**
* Function to track every step of transformation.
*/
logger?: () => void;
logger?: (() => void) | undefined;
}

@@ -79,3 +79,3 @@

*/
sourceMap?: boolean;
sourceMap?: boolean | undefined;
/**

@@ -85,3 +85,3 @@ * Filename of input CSS, uses for source map generation.

*/
filename?: string;
filename?: string | undefined;
/**

@@ -91,12 +91,12 @@ * Output debug information to stderr.

*/
debug?: boolean;
debug?: boolean | undefined;
/**
* Called right after parse is run.
*/
beforeCompress?: BeforeCompressFn | BeforeCompressFn[];
beforeCompress?: BeforeCompressFn | BeforeCompressFn[] | undefined;
/**
* Called right after compress() is run.
*/
afterCompress?: AfterCompressFn | AfterCompressFn[];
restructure?: boolean;
afterCompress?: AfterCompressFn | AfterCompressFn[] | undefined;
restructure?: boolean | undefined;
}

@@ -103,0 +103,0 @@

{
"name": "@types/csso",
"version": "3.5.1",
"version": "3.5.2",
"description": "TypeScript definitions for csso",
"homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/csso",
"license": "MIT",

@@ -19,6 +20,7 @@ "contributors": [

"main": "",
"types": "index",
"types": "index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git"
"url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git",
"directory": "types/csso"
},

@@ -29,4 +31,4 @@ "scripts": {},

},
"typesPublisherContentHash": "f377d4b8a162d1ce2e7db5124fcaf69b2bc9fd10f4ff2c8c14433ed6b96184de",
"typeScriptVersion": "2.7"
"typesPublisherContentHash": "7c55f612df6b984e0bef19328518a6dc8dba85e1a853814c6c4497eb6c8953ee",
"typeScriptVersion": "3.6"
}

@@ -8,10 +8,10 @@ # Installation

# Details
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/csso
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/csso.
Additional Details
* Last updated: Sun, 18 Nov 2018 18:46:58 GMT
* Dependencies: css-tree
### Additional Details
* Last updated: Tue, 06 Jul 2021 20:32:35 GMT
* Dependencies: [@types/css-tree](https://npmjs.com/package/@types/css-tree)
* Global values: none
# Credits
These definitions were written by Christian Rackerseder <https://github.com/screendriver>, Erik Källén <https://github.com/erik-kallen>.
These definitions were written by [Christian Rackerseder](https://github.com/screendriver), and [Erik Källén](https://github.com/erik-kallen).

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc