/**
 * Enum representing different kinds of postfix operators.
 */
export enum PostfixOperatorKind {
  /** Postfix increment operator */
  POSTFIX_INCREMENT,
  /** Postfix decrement operator */
  POSTFIX_DECREMENT,
}
