reactiveweb
    Preparing search index...

    Interface Options<State, Value>

    interface Options<State, Value> {
        create: () => State;
        read: (state: State) => Value;
        update: (state: State) => void;
    }

    Type Parameters

    • State
    • Value
    Index

    Properties

    Properties

    create: () => State
    read: (state: State) => Value
    update: (state: State) => void