• Deletes selected tables 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";
          useClone?: boolean;
          which?: "top" | "all" | "bottom";
      }

      Optional target configuration.

      • OptionalchangeSel?: boolean

        Whether to update the selection.

      • Optionalselect?: number[] | "tables"

        The tables to delete (default: "tables").

      • OptionaluseClone?: boolean

        Whether to clone before deleting.

      • Optionalwhich?: "top" | "all" | "bottom"

        Specifies which tables to delete (default: "all").

    Returns { success: boolean }

    • The result of the operation.