geostyler
Version:
Framework for styling geodata
14 lines (13 loc) • 416 B
TypeScript
import { default as React } from 'react';
export interface Crumb {
title: string;
view: string;
indices: number[];
}
export interface BreadcrumbProps {
/** The callback method that is triggered when a crumb was clicked */
onClick?: (crumbView: string, indices: number[]) => void;
/** The crumbs to display */
crumbs: Crumb[];
}
export declare const Breadcrumb: React.FC<BreadcrumbProps>;