/** * The JSON token types emitted by the tokenizer. * * @module */ /** The type of a JSON token, as reported by the tokenizer's `onToken` callback. */ declare enum TokenType { /** `{` */ LEFT_BRACE = 0, /** `}` */ RIGHT_BRACE = 1, /** `[` */ LEFT_BRACKET = 2, /** `]` */ RIGHT_BRACKET = 3, /** `:` */ COLON = 4, /** `,` */ COMMA = 5, /** `true` */ TRUE = 6, /** `false` */ FALSE = 7, /** `null` */ NULL = 8, /** A string, with all its escape sequences already resolved. */ STRING = 9, /** A number, already parsed into a JavaScript number. */ NUMBER = 10, /** The configured separator between consecutive JSON documents. */ SEPARATOR = 11 } export default TokenType; //# sourceMappingURL=tokenType.d.ts.map