@cmk/fe_utils
Version:
frontend utility library
20 lines (19 loc) • 546 B
TypeScript
export declare const treeViewDef: {
type: "TreeView";
component: (props: import('./TreeViewWrapper').TreeViewWrapperProps) => import("react/jsx-runtime").JSX.Element;
props: {
items: ({
itemId: string;
label: string;
_parentId?: undefined;
} | {
itemId: string;
_parentId: string;
label: string;
})[];
selectedItems: never[];
};
icon: string;
category: "data";
schema: import('../..').ExtendedObjectSchemaType;
};