UNPKG

198 BTypeScriptView Raw
1import { Context } from '../context/context';
2export interface Operators {
3 [key: string]: (lhs: any, rhs: any, ctx: Context) => boolean;
4}
5export declare const defaultOperators: Operators;