UNPKG

@1771technologies/lytenyte-pro

Version:

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

10 lines (9 loc) 502 B
import { type JSX, type ReactNode } from "react"; import type { RowFullWidthRowLayout } from "../+types"; import { type DropWrapProps } from "@1771technologies/lytenyte-core/yinternal"; export interface RowFullWidthProps extends Omit<DropWrapProps, "accepted"> { readonly row: RowFullWidthRowLayout<any>; readonly space?: "viewport" | "scroll-width"; readonly accepted?: string[]; } export declare const RowFullWidth: (props: JSX.IntrinsicElements["div"] & RowFullWidthProps) => ReactNode;