export type UnaryOperator = | "-" | "+" | "!" | "~" | "typeof" | "void" | "delete"; export type BinaryOperator = | "==" | "!=" | "===" | "!==" | "<" | "<=" | ">" | ">=" | "<<" | ">>" | ">>>" | "+" | "-" | "*" | "/" | "%" | "**" | "|" | "^" | "&" | "in" | "instanceof"; export type LogicalOperator = "||" | "&&" | "??"; export type AssignmentOperator = | "=" | "+=" | "-=" | "*=" | "/=" | "%=" | "**=" | "<<=" | ">>=" | ">>>=" | "|=" | "^=" | "&=" | "||=" | "&&=" | "??="; export type UpdateOperator = "++" | "--";