UNPKG

json-express

Version:

Parse JSON expression and transform into another forms.

11 lines (10 loc) 235 B
declare class PeekableString { index: number; source: string; constructor(source: string); clear(): void; peek(rel?: number): string; next(rel?: number): void; trim(): void; } export default PeekableString;