@kgdata/visualgraph
Version:
visualgraph
17 lines (16 loc) • 486 B
TypeScript
import React from 'react';
import './index.less';
declare type GraphSettingProps = {
activeKey: string;
moduleType?: string;
contentVisible: boolean;
tabs: {
title?: string;
key: string;
icon: React.ReactNode;
}[];
componentMap: Record<string, React.ReactNode>;
handleChangeActiveKey: (key: string, type?: string) => void;
};
declare const _default: (props: GraphSettingProps) => JSX.Element;
export default _default;