Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
13 lines
677 B
Plaintext
13 lines
677 B
Plaintext
import type { DraggableSyntheticListeners } from '@dnd-kit/core';
|
|
import type { Column } from 'payload';
|
|
import type { HTMLAttributes, Ref } from 'react';
|
|
export type Props = {
|
|
readonly cellMap: Record<string, number>;
|
|
readonly columns: Column[];
|
|
readonly dragAttributes?: HTMLAttributes<unknown>;
|
|
readonly dragListeners?: DraggableSyntheticListeners;
|
|
readonly ref?: Ref<HTMLTableRowElement>;
|
|
readonly rowId: number | string;
|
|
} & HTMLAttributes<HTMLTableRowElement>;
|
|
export declare const OrderableRow: ({ cellMap, columns, dragAttributes, dragListeners, rowId, ...rest }: Props) => import("react").JSX.Element;
|
|
//# sourceMappingURL=OrderableRow.d.ts.map |