9s-fe-core
Version:
Core functionalities for authentication, configuration, and repository management.
8 lines (7 loc) • 314 B
TypeScript
import { FieldTypeModel } from "../../models/schema_model";
type ExpandableTableProps = {
records: Record<string, any>[];
fieldList: FieldTypeModel[] | undefined;
};
export default function ExpandableTable({ records, fieldList, }: ExpandableTableProps): import("react/jsx-runtime").JSX.Element;
export {};