UNPKG

@akala/core

Version:
8 lines (7 loc) 211 B
/** Enum representing valid unary operators. */ export declare enum UnaryOperator { /** Logical NOT operator (!) */ Not = 0, /** Double NOT operator ( !! ) used for type coercion */ NotNot = 1 }