UNPKG

zent

Version:

一套前端设计语言和基于React的实现

9 lines (8 loc) 355 B
/// <reference types="react" /> import { IInnerTab } from '../../types'; interface IAnchorOperationProps<Id> { tabs: Array<IInnerTab<Id>>; onChange: (item: IInnerTab<Id>) => void; } declare const AnchorOperation: <Id extends string | number = string>({ tabs, onChange, }: IAnchorOperationProps<Id>) => JSX.Element; export default AnchorOperation;