UNPKG

fracturedjsonjs

Version:

JSON formatter that produces highly readable but fairly compact output

9 lines (8 loc) 156 B
/** * Structure representing a location in an input stream. */ export interface InputPosition { Index: number; Row: number; Column: number; }