UNPKG

@1771technologies/lytenyte-pro

Version:

Blazingly fast headless React data grid with 100s of features.

9 lines (8 loc) 435 B
import { type JSX, type ReactNode } from "react"; import type { RowNormalRowLayout } from "../+types"; import { type DropWrapProps } from "@1771technologies/lytenyte-core/yinternal"; export interface RowProps extends Omit<DropWrapProps, "accepted"> { readonly row: RowNormalRowLayout<any>; readonly accepted?: string[]; } export declare const Row: (props: Omit<JSX.IntrinsicElements["div"], "onDrag"> & RowProps) => ReactNode;