Skip to content
This repository has been archived by the owner on Jun 28, 2021. It is now read-only.

Commit

Permalink
ts: callback info is always present
Browse files Browse the repository at this point in the history
  • Loading branch information
wdavidw committed Nov 16, 2018
1 parent 7e9f9a0 commit 68735c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/index.d.ts
Expand Up @@ -12,7 +12,7 @@ declare function parse(options?: parse.Options, callback?: parse.Callback): pars
declare function parse(callback?: parse.Callback): parse.Parser;
declare namespace parse {

type Callback = (err: Error | undefined, records: any | undefined, info?: Info) => void;
type Callback = (err: Error | undefined, records: any | undefined, info: Info) => void;

type MatcherFunc = (value: any) => boolean;

Expand Down

0 comments on commit 68735c0

Please sign in to comment.