@node-in-layers/mcp
    Preparing search index...

    Function isExecuteModelBulkDelete

    • Checks if the data is a bulk delete model data.

      Parameters

      • data: any

        The data to check.

      Returns data is Readonly<
          {
              args: Readonly<{ ids: readonly string[]; modelType: string }> & Readonly<
                  { [s: string]: JsonAble },
              >;
              toolName: BulkDelete;
          },
      > & Readonly<
          {
              action: BulkDelete;
              domain: string;
              modelName: string;
              toolName: BulkDelete;
          },
      >

      True if the data is a bulk delete model data, false otherwise.