staticoso/Source/node_modules/constantinople/lib/binaryOperation.d.ts

3 lines
274 B
TypeScript

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