@types/stylelint
Advanced tools
Comparing version 13.13.0 to 13.13.1
@@ -100,3 +100,3 @@ // Type definitions for stylelint 13.13 | ||
possible?: any; | ||
optional?: false; | ||
optional?: false | undefined; | ||
} | { | ||
@@ -116,5 +116,5 @@ actual?: any; | ||
node: postcss.Node; | ||
index?: number; | ||
word?: string; | ||
line?: number; | ||
index?: number | undefined; | ||
word?: string | undefined; | ||
line?: number | undefined; | ||
}): void; | ||
@@ -152,10 +152,10 @@ | ||
code: string; | ||
description?: string; | ||
description?: string | undefined; | ||
} | ||
export interface RuleTesterTestRejected extends RuleTesterTest { | ||
line?: number; | ||
column?: number; | ||
only?: boolean; | ||
message?: string; | ||
line?: number | undefined; | ||
column?: number | undefined; | ||
only?: boolean | undefined; | ||
message?: string | undefined; | ||
} | ||
@@ -165,6 +165,6 @@ | ||
ruleName: string; | ||
syntax?: SyntaxType; | ||
syntax?: SyntaxType | undefined; | ||
config?: any; | ||
accept?: RuleTesterTest[]; | ||
reject?: RuleTesterTestRejected[]; | ||
accept?: RuleTesterTest[] | undefined; | ||
reject?: RuleTesterTestRejected[] | undefined; | ||
} | ||
@@ -176,3 +176,3 @@ | ||
caseDescription: string; | ||
only?: boolean; | ||
only?: boolean | undefined; | ||
} | ||
@@ -179,0 +179,0 @@ |
{ | ||
"name": "@types/stylelint", | ||
"version": "13.13.0", | ||
"version": "13.13.1", | ||
"description": "TypeScript definitions for stylelint", | ||
@@ -41,4 +41,4 @@ "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/stylelint", | ||
}, | ||
"typesPublisherContentHash": "1763c5f44e052512722d5d58d629f60165856f2ab86c94252ed40d32a8e244d6", | ||
"typesPublisherContentHash": "812d16dff00df8585757cdee70393e438c0bbced33461de2390ecdad6f6c613a", | ||
"typeScriptVersion": "3.6" | ||
} |
@@ -11,3 +11,3 @@ # Installation | ||
### Additional Details | ||
* Last updated: Sun, 30 May 2021 14:01:16 GMT | ||
* Last updated: Fri, 02 Jul 2021 22:33:07 GMT | ||
* Dependencies: [@types/globby](https://npmjs.com/package/@types/globby), [@types/postcss](https://npmjs.com/package/@types/postcss) | ||
@@ -14,0 +14,0 @@ * Global values: none |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
7854