UNPKG

jscrs

Version:
14 lines (12 loc) 249 B
import { ITokenLocation } from './token-location.i'; export interface IToken { type: string; value: string; length: number; format: string; range: number[]; loc: { start: ITokenLocation; end: ITokenLocation; }; }