To @flow: Token, Lexer, ParseError, and ParseNode. (#839)

* To @flow: Token, Lexer, ParseError, and ParseNode.

* PR fixes 1.
This commit is contained in:
Ashish Myles
2017-09-04 15:27:58 -04:00
committed by Kevin Barabash
parent 12399da73d
commit 13f3eac741
6 changed files with 111 additions and 70 deletions

3
flow-typed/match-at.js vendored Normal file
View File

@@ -0,0 +1,3 @@
declare module 'match-at' {
declare module.exports: (re: RegExp, str: string, pos: number) => (Array<string>|null);
}