epiphany/node_modules/constantinople/lib/binaryOperation.d.ts
2023-12-09 22:19:03 -08:00

2 lines
274 B
TypeScript

export declare type Operator = '+' | '-' | '/' | '%' | '*' | '**' | '&' | '|' | '>>' | '>>>' | '<<' | '^' | '==' | '===' | '!=' | '!==' | 'in' | 'instanceof' | '>' | '<' | '>=' | '<=';
export default function binaryOperation(operator: Operator, left: any, right: any): any;