UNPKG

314 BTypeScriptView Raw
1import type { BreadcrumbItemType, BreadcrumbSeparatorType, ItemType } from './Breadcrumb';
2type MergedType = BreadcrumbItemType & {
3 children?: ItemType['children'];
4};
5export default function useItems(items?: ItemType[], routes?: ItemType[]): Partial<MergedType & BreadcrumbSeparatorType>[] | null;
6export {};