UNPKG

@flowscripter/mpeg-sdl-parser

Version:

ISO/IEC 14496-34 Syntactic Description Language (MPEG SDL) parser implemented in TypeScript

13 lines (12 loc) 271 B
/** * Enum representing different kinds of class IDs. * This enum is used to categorize different types of class IDs. */ export enum ClassIdKind { /** Single class ID */ SINGLE, /** Range class ID */ RANGE, /** Extended range class ID */ EXTENDED_RANGE, }