Remix
Remix
remix/data-table · TypeView Source

TableBeforeDeleteContext

Summary

Context passed to the beforeDelete hook.

Signature

type TableBeforeDeleteContext = {
  limit?: number;
  offset?: number;
  orderBy: ReadonlyArray<OrderByClause>;
  tableName: string;
  where: ReadonlyArray<Predicate<string>>;
};