The returned filter function from regexObjectQuery helper.

interface regexObjectQuery {
    set(this: void, value: string): void;
    subscribe(
        this: void,
        run: Subscriber<string>,
        invalidate?: Invalidator<string>,
    ): Unsubscriber;
    (...args: [data: { [key: string | number | symbol]: any }]): boolean;
}
Hierarchy
  • Parameters

    • ...args: [data: { [key: string | number | symbol]: any }]

    Returns boolean

Index
  • Set value and inform subscribers.

    Parameters

    • this: void
    • value: string

      to set

    Returns void