UNPKG

262 BTypeScriptView Raw
1export type AppItemProps = {
2 title: React.ReactNode;
3 desc?: React.ReactNode;
4 icon?: React.ReactNode | (() => React.ReactNode);
5 url?: string;
6 target?: string;
7 children?: Omit<AppItemProps, 'children'>[];
8};
9
10export type AppListProps = AppItemProps[];
11
\No newline at end of file