Fix bintrees callback signature

This commit is contained in:
Ryan Gomoto
2017-01-31 19:04:52 -08:00
committed by GitHub
parent 8cb9653398
commit 72698b1b11

2
bintrees/index.d.ts vendored
View File

@@ -5,7 +5,7 @@
declare module 'bintrees' {
type Callback = <T>(err: Error, item: T) => void;
type Callback = <T>(item: T) => void;
type Comparator = <T>(a: T, b: T) => number;
class Iterator<T> {