svelte-settings
Version:
> [!WARNING] > This project is a work in progress. Do not use it in any of your projects yet.
12 lines (11 loc) • 469 B
TypeScript
import type { HTMLAnchorAttributes } from "svelte/elements";
import type { Snippet } from "svelte";
import { type WithElementRef } from "../../../utils.js";
type $$ComponentProps = WithElementRef<HTMLAnchorAttributes> & {
child?: Snippet<[{
props: HTMLAnchorAttributes;
}]>;
};
declare const BreadcrumbLink: import("svelte").Component<$$ComponentProps, {}, "ref">;
type BreadcrumbLink = ReturnType<typeof BreadcrumbLink>;
export default BreadcrumbLink;