UNPKG

@bos-alpha/progress

Version:

进度管理

11 lines (10 loc) 331 B
import React from 'react'; interface PropsType { type: 'add' | 'remove'; wbsKey: string; tagLinkedKeys: any[]; onLink: (keys: React.Key[]) => void; onUnlink: (keys: React.Key[]) => void; } export declare const ModelTree: ({ type, wbsKey, tagLinkedKeys, onLink, onUnlink }: PropsType) => JSX.Element; export {};