memongo
    Preparing search index...

    Interface QueryCommand<T>

    interface QueryCommand<T extends JSONValueOrUndefined = JSONValueOrUndefined> {
        and(queryCommand: QueryCommand<T>): QueryCommand<T>;
        exec(val: T): boolean;
        not(): QueryCommand<T>;
        or(queryCommand: QueryCommand<T>): QueryCommand<T>;
    }

    Type Parameters

    Index

    Methods

    Methods