UNPKG

@allgemein/expressions

Version:
10 lines (9 loc) 369 B
import { Selector } from "./Selector"; import { KeyDesc } from "./KeyDesc"; import { OpDesc } from "./OpDesc"; export declare class GtDesc extends OpDesc { readonly type: string; constructor(key: string | KeyDesc, value: Selector); lookup(source: any): (target: any) => boolean; } export declare function Gt(key: string | KeyDesc, value: Selector): GtDesc;