nav-outlet.d.ts 303 B

12345678910111213141516
  1. import { NgbNav } from './nav';
  2. /**
  3. * The outlet where currently active nav content will be displayed.
  4. *
  5. * @since 5.2.0
  6. */
  7. export declare class NgbNavOutlet {
  8. /**
  9. * A role to set on the nav pane
  10. */
  11. paneRole: any;
  12. /**
  13. * Reference to the `NgbNav`
  14. */
  15. nav: NgbNav;
  16. }