superfly-timeline
Version:
Resolver for defining objects with temporal boolean logic relationships on a timeline
13 lines • 555 B
TypeScript
import { ValueWithReference } from './reference';
export type OperatorFunction = (a: ValueWithReference | null, b: ValueWithReference | null) => ValueWithReference | null;
/** Helper class for various math operators, used in expressions */
export declare abstract class Operator {
static get(operator: '+' | '-' | '*' | '/' | '%'): OperatorFunction;
private static Add;
private static Subtract;
private static Multiply;
private static Divide;
private static Modulo;
private static Null;
}
//# sourceMappingURL=operator.d.ts.map