@flowscripter/mpeg-sdl-parser
Version:
ISO/IEC 14496-34 Syntactic Description Language (MPEG SDL) parser implemented in TypeScript
14 lines (13 loc) • 430 B
text/typescript
/**
* Represents a location within a text document.
*
* @interface Location
* @property {number} row - The one-based row number in the text document.
* @property {number} column - The one-based column number in the text document.
* @property {number} position - The zero-based position within the entire text.
*/
export interface Location {
readonly row: number;
readonly column: number;
readonly position: number;
}