weasel API - v0.8.0
    Preparing search index...

    Interface SceneAdapterSelection

    Minimal selection contract sceneToAdapter needs to wire getSelection / setSelection. Matches useSelection().adapterMethods plus an imperative read; pass useSelection() itself or selection.adapterMethods.

    interface SceneAdapterSelection {
        get?(): string[];
        getSelection?(): string[];
        set?(ids: string[]): void;
        setSelection?(ids: string[]): void;
    }
    Index

    Methods