UNPKG

@1771technologies/lytenyte-pro

Version:

12 lines (11 loc) 525 B
import { GridProReact } from '@1771technologies/grid-types/pro-react'; import { SplitPaneAxe } from '@1771technologies/react-split-pane'; import { PropsWithChildren } from 'react'; export interface GridFrameConfiguration { readonly axe?: SplitPaneAxe; } export interface GridFrameProps<D> { readonly grid: GridProReact<D>; readonly axe?: SplitPaneAxe; } export declare function GridFrame<D>({ grid: { api, state }, children, axe, }: PropsWithChildren<GridFrameProps<D>>): import("react/jsx-runtime").JSX.Element;