query: {
    clear: () => void;
    set: (this: void, value: string) => void;
    subscribe: (
        this: void,
        run: Subscriber<string>,
        invalidate?: () => void,
    ) => Unsubscriber;
    update: (this: void, updater: Updater<string>) => void;
} = ...

Type declaration

  • clear: () => void
  • set: (this: void, value: string) => void
  • subscribe: (this: void, run: Subscriber<string>, invalidate?: () => void) => Unsubscriber
  • update: (this: void, updater: Updater<string>) => void