UNPKG

@flowscripter/mpeg-sdl-parser

Version:

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

12 lines (11 loc) 237 B
/** * Enum representing different kinds of array dimensions. */ export enum ArrayDimensionKind { /** Explicit array dimension */ EXPLICIT, /** Partial array dimension */ PARTIAL, /** Implicit array dimension */ IMPLICIT, }