UNPKG

@oceanbase/ui

Version:

The UI library based on OceanBase Design

17 lines (16 loc) 631 B
import type { GraphData } from '@antv/g6/lib/types'; import type { LocaleWrapperProps } from '../locale/LocaleWrapper'; import type { TaskGraphLocale } from './Graph'; import './index.less'; export interface TaskGraphProps extends LocaleWrapperProps { data: GraphData; logLoading?: boolean; subTaskLog: string; onMenuClick: (key: string, subTask: any, onSuccess: () => void) => void; onTabsChange?: (targetKey: string) => void; onTabsEdit?: (targetKey: string, action: 'add' | 'remove') => void; assetsPath?: string; locale?: TaskGraphLocale; } declare const _default: any; export default _default;