teddit/node_modules/constantinople/lib/binaryOperation.d.ts
2020-11-17 21:44:32 +01:00

3 lines
274 B
TypeScript

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