@types/bintrees
Advanced tools
Comparing version 1.0.2 to 1.0.3
@@ -1,2 +0,2 @@ | ||
// Type definitions for bintrees 1.0.1 | ||
// Type definitions for bintrees 1.0.2 | ||
// Project: https://github.com/vadimg/js_bintrees | ||
@@ -14,7 +14,7 @@ // Definitions by: Cayle Sharrock <https://github.com/CjS77> | ||
data(): T; | ||
data(): T | null; | ||
next(): T; | ||
next(): T | null; | ||
prev(): T; | ||
prev(): T | null; | ||
} | ||
@@ -27,5 +27,5 @@ | ||
find(data: T): T; | ||
find(data: T): T | null; | ||
findIter(data: T): Iterator<T>; | ||
findIter(data: T): Iterator<T> | null; | ||
@@ -36,5 +36,5 @@ lowerBound(item: T): Iterator<T>; | ||
min(): T; | ||
min(): T | null; | ||
max(): T; | ||
max(): T | null; | ||
@@ -41,0 +41,0 @@ iterator(): Iterator<T>; |
{ | ||
"name": "@types/bintrees", | ||
"version": "1.0.2", | ||
"version": "1.0.3", | ||
"description": "TypeScript definitions for bintrees", | ||
@@ -9,15 +9,17 @@ "license": "MIT", | ||
"name": "Cayle Sharrock", | ||
"url": "https://github.com/CjS77" | ||
"url": "https://github.com/CjS77", | ||
"githubUsername": "CjS77" | ||
} | ||
], | ||
"main": "", | ||
"types": "index.d.ts", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://www.github.com/DefinitelyTyped/DefinitelyTyped.git" | ||
"url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git", | ||
"directory": "types/bintrees" | ||
}, | ||
"scripts": {}, | ||
"dependencies": {}, | ||
"peerDependencies": {}, | ||
"typesPublisherContentHash": "f7f9d352be6b7351eaf3a20ee2b500b141e9d691db449c3aa9bf265a1eecca4a", | ||
"typeScriptVersion": "2.0" | ||
"typesPublisherContentHash": "cf9c1009fabd8c347d8785c8b7c35601339bed58d36e26719b291950d7bce50e", | ||
"typeScriptVersion": "3.4" | ||
} |
@@ -8,6 +8,6 @@ # Installation | ||
# Details | ||
Files were exported from https://www.github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/bintrees | ||
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/bintrees. | ||
Additional Details | ||
* Last updated: Thu, 20 Jul 2017 13:50:42 GMT | ||
### Additional Details | ||
* Last updated: Wed, 17 Feb 2021 16:27:00 GMT | ||
* Dependencies: none | ||
@@ -17,2 +17,2 @@ * Global values: none | ||
# Credits | ||
These definitions were written by Cayle Sharrock <https://github.com/CjS77>. | ||
These definitions were written by [Cayle Sharrock](https://github.com/CjS77). |
Sorry, the diff of this file is not supported yet
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
3574