• Deletes a single selected table from the dataset.

    Type Parameters

    • T extends object

      The type of the row data.

    Parameters

    • ds: Ds<T> | Dsm<T>

      The dataset or dataset manager.

    • Optionaltarget: { changeSel?: boolean; select?: number | "tables" | T[]; useClone?: boolean }

      Optional target configuration.

      • OptionalchangeSel?: boolean

        Whether to update the selection.

      • Optionalselect?: number | "tables" | T[]

        The table to delete.

      • OptionaluseClone?: boolean

        Whether to clone before deleting.

    Returns { success: boolean }

    • The result of the operation.