nav-config.d.ts 445 B

12345678910111213
  1. /**
  2. * A configuration service for the [`NgbNav`](#/components/nav/api#NgbNav) component.
  3. *
  4. * You can inject this service, typically in your root component, and customize the values of its properties in
  5. * order to provide default values for all the navs used in the application.
  6. *
  7. * @since 5.2.0
  8. */
  9. export declare class NgbNavConfig {
  10. destroyOnHide: boolean;
  11. orientation: 'horizontal' | 'vertical';
  12. roles: 'tablist' | false;
  13. }