interface ISelectionTool {
    mode: SelectionMode;
    onChange: ((modelId, ids, containedOnly) => Promise<number[]>);
}

Implemented by

Properties

Properties

onChange: ((modelId, ids, containedOnly) => Promise<number[]>)

Type declaration

    • (modelId, ids, containedOnly): Promise<number[]>
    • Parameters

      • modelId: string
      • ids: number[]
      • containedOnly: boolean

      Returns Promise<number[]>