tabset-config.d.ts 475 B

1234567891011
  1. /**
  2. * A configuration service for the [`NgbTabset`](#/components/tabset/api#NgbTabset) 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 tabsets used in the application.
  6. */
  7. export declare class NgbTabsetConfig {
  8. justify: 'start' | 'center' | 'end' | 'fill' | 'justified';
  9. orientation: 'horizontal' | 'vertical';
  10. type: 'tabs' | 'pills';
  11. }