@types/parsimmon
Advanced tools
Comparing version 1.10.5 to 1.10.6
@@ -253,5 +253,5 @@ // Type definitions for Parsimmon 1.10 | ||
* | ||
* Expects one or more matches for parser, separated by the parser separator, yielding an array. | ||
* Expects one or more matches for parser, separated by the parser separator, yielding a non-empty array. | ||
*/ | ||
sepBy1<U>(separator: Parser<U>): Parser<T[]>; | ||
sepBy1<U>(separator: Parser<U>): Parser<[T, ...T[]]>; | ||
/** | ||
@@ -476,3 +476,3 @@ * Equivalent to Parsimmon.of(result). | ||
*/ | ||
function sepBy1<T, U>(content: Parser<T>, separator: Parser<U>): Parser<T[]>; | ||
function sepBy1<T, U>(content: Parser<T>, separator: Parser<U>): Parser<[T, ...T[]]>; | ||
@@ -479,0 +479,0 @@ /** |
{ | ||
"name": "@types/parsimmon", | ||
"version": "1.10.5", | ||
"version": "1.10.6", | ||
"description": "TypeScript definitions for Parsimmon", | ||
@@ -52,4 +52,4 @@ "license": "MIT", | ||
"dependencies": {}, | ||
"typesPublisherContentHash": "3ce2a44d898536ae7a9828f835f9fbd4f9e19317666b06c045fb761e50ee7e50", | ||
"typesPublisherContentHash": "003332719be7be86a3a60505bfc2ab8d0f3602e5d7814ce388641788eb6b081a", | ||
"typeScriptVersion": "3.3" | ||
} |
@@ -11,3 +11,3 @@ # Installation | ||
### Additional Details | ||
* Last updated: Mon, 30 Nov 2020 21:25:38 GMT | ||
* Last updated: Sun, 06 Dec 2020 03:04:46 GMT | ||
* Dependencies: none | ||
@@ -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
27124