UNPKG

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