Rezi
    Preparing search index...

    Type Alias HookState

    HookState:
        | { kind: "state"; value: unknown }
        | {
            kind: "reducer";
            reducer: (state: unknown, action: unknown) => unknown;
            value: unknown;
        }
        | { kind: "ref"; ref: RefState }
        | { effect: EffectState; kind: "effect" }
        | { kind: "memo"; memo: MemoState }
        | { callbackState: CallbackState; kind: "callback" }

    Per-hook-index state storage.