seti-ramesesv1
Version:
Reusable components and context for Next.js apps
16 lines (15 loc) • 415 B
TypeScript
export type TreeTableRow = {
keyId: string;
id: string;
title: string;
statement: string;
type: string;
required: boolean;
metadata?: TreeTableRow[];
};
type TreeTableProps = {
value?: TreeTableRow[];
onChange?: (rows: TreeTableRow[]) => void;
};
declare function TreeTable({ value, onChange }: TreeTableProps): import("react/jsx-runtime").JSX.Element;
export default TreeTable;