UNPKG

@flowscripter/mpeg-sdl-parser

Version:

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

14 lines (13 loc) 235 B
/** * Enum representing the kinds of unary operators. */ export enum UnaryOperatorKind { /** * Represents the unary plus operator. */ UNARY_PLUS, /** * Represents the unary negation operator. */ UNARY_NEGATION, }