@flowscripter/mpeg-sdl-parser
Version:
ISO/IEC 14496-34 Syntactic Description Language (MPEG SDL) parser implemented in TypeScript
14 lines (12 loc) • 328 B
text/typescript
import type { Location } from "../../Location.ts";
/**
* Represents a parsed trivia item.
*
* @interface Trivia
* @property {string} text - The text content of the trivia.
* @property {Location} location - The location of the trivia.
*/
export interface Trivia {
readonly text: string;
readonly location: Location;
}