@pluve/ace
Version:
一套React版本的 Taro UI 组件库
19 lines (18 loc) • 461 B
TypeScript
import { FC, PropsWithChildren } from 'react';
interface IIndexesItem {
name: string;
[key: string]: any;
}
interface IIndexesListItem {
title: string;
key: string;
items: IIndexesItem[];
}
interface IIndexesProps {
animation?: boolean;
topKey?: string;
list: IIndexesListItem[];
onClick?: (item: IIndexesItem) => void;
}
declare const Indexes: FC<PropsWithChildren<IIndexesProps>>;
export default Indexes;