blob: d9169a2058b1dc7b9db85054537d086c03ca0c67 (
plain)
1
2
3
4
5
6
|
import { ParserState, Context } from '../common';
import { Token } from '../token';
import { NumberKind } from './common';
export declare function scanNumber(parser: ParserState, context: Context, kind: NumberKind): Token;
export declare function scanDecimalDigitsOrSeparator(parser: ParserState, char: number): string;
//# sourceMappingURL=numeric.d.ts.map
|