UNPKG

af-conditionals

Version:

A library that provides tools for making decisions in your code

5 lines (4 loc) 156 B
import { Operator } from './operator'; export declare abstract class BinaryOperator extends Operator { abstract apply(value1: any, value2: any): any; }