UNPKG

cbon

Version:
18 lines (17 loc) 383 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); class TkPos { constructor(count, char, line) { this.count = count; this.char = char; this.line = line; } } exports.TkPos = TkPos; class TkRange { constructor(from, to) { this.from = from; this.to = to; } } exports.TkRange = TkRange;