com-tools
Version:
com-tools 提供了一些通用的工具函数;
20 lines (13 loc) • 464 B
Markdown
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
[Home](./index.md) > [com-tools](./com-tools.md) > [GroupTree](./com-tools.grouptree.md)
## GroupTree type
分组树
**Signature:**
```typescript
export type GroupTree<Member, Group extends PropertyKey = string> = {
members?: Member[];
} & {
[C in Group]?: GroupTree<Member, Group>;
};
```
**References:** [GroupTree](./com-tools.grouptree.md)