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
18 lines
754 B
Plaintext
18 lines
754 B
Plaintext
import React from 'react';
|
|
import './index.scss';
|
|
type Props = {
|
|
readonly columns: React.ReactNode[];
|
|
readonly disabled?: boolean;
|
|
readonly dragData?: Record<string, unknown>;
|
|
readonly id: number | string;
|
|
readonly isDroppable?: boolean;
|
|
readonly isFocused?: boolean;
|
|
readonly isSelected?: boolean;
|
|
readonly isSelecting?: boolean;
|
|
readonly itemKey: string;
|
|
readonly onClick?: (e: React.MouseEvent) => void;
|
|
readonly onKeyDown?: (e: React.KeyboardEvent) => void;
|
|
};
|
|
export declare function DraggableTableRow({ id, columns, disabled, dragData, isDroppable: _isDroppable, isFocused, isSelected, isSelecting, itemKey, onClick, onKeyDown, }: Props): React.JSX.Element;
|
|
export {};
|
|
//# sourceMappingURL=index.d.ts.map |