feat(scrollBreadcrumbStore): add id field and comments

This commit is contained in:
Ilia Mashkov
2026-02-10 21:16:32 +03:00
parent a5b9238306
commit a557e15759

View File

@@ -1,7 +1,17 @@
import type { Snippet } from 'svelte';
export interface BreadcrumbItem {
/**
* Index of the item to display
*/
index: number;
/**
* ID of the item to navigate to
*/
id?: string;
/**
* Title snippet to render
*/
title: Snippet<[{ className?: string }]>;
}