geist-ui-svelte
Version:
<img src="./src/lib/assets/demo-page.png">
25 lines (24 loc) • 1.1 kB
TypeScript
import { SvelteComponent } from "svelte";
declare const __propDef: {
props: {
/** Can be used to exclude a path prefix EX: excludePrefix == '/dashboard' => route == '/dashboard/settings' => route == '/settings'*/ excludePrefix?: string | undefined;
/** Allows you to apply a custom transform to the path name */ transform?: (pathName: string) => string;
separator?: string;
/** Will prevent the transformation from being run on direct children of the routes provided*/ doNotTransform?: string[];
};
events: {
[evt: string]: CustomEvent<any>;
};
slots: {};
};
export type BreadCrumbsProps = typeof __propDef.props;
export type BreadCrumbsEvents = typeof __propDef.events;
export type BreadCrumbsSlots = typeof __propDef.slots;
/**
* A component to show the current path.
*
* [See Docs](https://geist-ui-svelte.dev/components/breadcrumbs) | [Open Issue](https://github.com/ieedan/geist-ui-svelte/issues/new)
*/
export default class BreadCrumbs extends SvelteComponent<BreadCrumbsProps, BreadCrumbsEvents, BreadCrumbsSlots> {
}
export {};