6 lines
198 B
TypeScript
6 lines
198 B
TypeScript
import { Context } from '../context/context';
|
|
export interface Operators {
|
|
[key: string]: (lhs: any, rhs: any, ctx: Context) => boolean;
|
|
}
|
|
export declare const defaultOperators: Operators;
|