@appkitreact/react-table-library
Version:
fork of react-table-library to support react 18 version
17 lines (16 loc) • 601 B
TypeScript
import * as React from 'react';
import { DataColumn } from '@appkitreact/react-table-library/common/util/columns';
export declare type Layout = {
custom?: boolean;
horizontalScroll?: boolean;
fixedHeader?: boolean;
isDiv?: boolean;
resizedLayout?: string;
onLayoutChange?: (grid: string) => void;
};
export declare type TableMemory = {
onlyOnce: boolean;
dataColumns: DataColumn[];
};
export declare type TableMemoryRef = React.MutableRefObject<TableMemory | null>;
export declare type TableElementRef = React.MutableRefObject<HTMLTableElement | null>;