You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

32 lines
811 B

4 months ago
import { Component } from '../../core';
import { Group } from '../../shapes';
import type { BreadcrumbStyleProps, BreadcrumbOptions } from './type';
export type { BreadcrumbStyleProps as BreadcrumbCfg, BreadcrumbOptions };
export declare class Breadcrumb extends Component<BreadcrumbStyleProps> {
/**
*
*/
static tag: string;
/**
*
*/
private static defaultOptions;
/**
*
* @param options
*/
constructor(options: BreadcrumbOptions);
render(attributes: BreadcrumbStyleProps, container: Group): void;
/**
*
* @param cfg
*/
update(cfg: Partial<BreadcrumbStyleProps>): void;
/**
*
* @param shape
* @param item
*/
private bindInnerEvents;
}