hashbrown

ParserError

Error information captured by the parser when invalid JSON is encountered.

API

export type ParserError = {
  message: string;
  index: number;
  line: number;
  column: number;
};