Files
frontend/node_modules/antd/lib/breadcrumb/useItems.d.ts
2026-01-17 15:16:36 -05:00

7 lines
314 B
TypeScript

import type { BreadcrumbItemType, BreadcrumbSeparatorType, ItemType } from './Breadcrumb';
type MergedType = BreadcrumbItemType & {
children?: ItemType['children'];
};
export default function useItems(items?: ItemType[], routes?: ItemType[]): Partial<MergedType & BreadcrumbSeparatorType>[] | null;
export {};