breadcrumb.d.ts 473 B

123456789101112
  1. /**
  2. * Use of this source code is governed by an MIT-style license that can be
  3. * found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE
  4. */
  5. import { TemplateRef } from '@angular/core';
  6. /**
  7. * https://angular.io/errors/NG3003
  8. * An intermediate interface for {@link NzBreadCrumbComponent} & {@link NzBreadCrumbItemComponent}
  9. */
  10. export declare abstract class NzBreadcrumb {
  11. abstract nzSeparator: string | TemplateRef<void> | null;
  12. }