breadcrumb.d.ts 315 B

12345678910
  1. import { ElementUIComponent } from './component'
  2. /** Displays the location of the current page, making it easier to browser back */
  3. export declare class ElBreadcrumb extends ElementUIComponent {
  4. /** Separator character */
  5. separator: string
  6. /** Class name of the icon separator */
  7. separatorClass: string
  8. }