UNPKG

@allgemein/expressions

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