瀏覽代碼

chore: remove a duplicate type (#1094)

SoonIter 3 年之前
父節點
當前提交
ca34d6bba5
共有 1 個文件被更改,包括 0 次插入12 次删除
  1. 0 12
      packages/semi-ui/tag/interface.ts

+ 0 - 12
packages/semi-ui/tag/interface.ts

@@ -38,15 +38,3 @@ export interface TagProps {
     'aria-label'?: React.AriaAttributes['aria-label'];
     tabIndex?: number; // use internal, when tag in taInput, we want to use left arrow and right arrow to control the tag focus, so the tabIndex need to be -1. 
 }
-
-export interface TagGroupProps {
-    style?: React.CSSProperties;
-    className?: string;
-    maxTagCount?: number;
-    tagList?: (TagProps | React.ReactNode)[];
-    size?: 'small' | 'large';
-    showPopover?: boolean;
-    popoverProps?: any; // TODO: 替换成PopoverProps
-    avatarShape?: AvatarShape;
-    mode?: string; // TODO: check 文档里没有这个api
-}