@vcmap/core
    Preparing search index...

    Type Alias SelectFeaturesSession

    SelectFeaturesSession: EditorSession<SELECT> & {
        currentFeatures: Feature[];
        featuresChanged: VcsEvent<Feature[]>;
        firstFeature: Feature | null;
        mode: SelectionMode;
        modeChanged: VcsEvent<SelectionMode>;
        clearSelection(): void;
        setCurrentFeatures(
            features:
                | Feature<Geometry, { [x: string]: any }>
                | Feature<Geometry, { [x: string]: any }>[],
        ): Promise<void>;
        setMode(mode: SelectionMode): void;
    }

    Type Declaration