mobx-bonsai
    Preparing search index...

    Interface AttachedStateHandler<TAttachedState>

    Interface for managing attached state with undo events.

    interface AttachedStateHandler<TAttachedState = unknown> {
        restore(state: TAttachedState): void;
        save(): TAttachedState;
    }

    Type Parameters

    • TAttachedState = unknown
    Index

    Methods

    Methods