mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-04-23 04:49:15 +08:00
Fix bintrees callback signature
This commit is contained in:
2
bintrees/index.d.ts
vendored
2
bintrees/index.d.ts
vendored
@@ -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> {
|
||||
|
||||
Reference in New Issue
Block a user