progressbar-config.d.ts 511 B

123456789101112131415
  1. /**
  2. * A configuration service for the [`NgbProgressbar`](#/components/progressbar/api#NgbProgressbar) 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 progress bars used in the application.
  6. */
  7. export declare class NgbProgressbarConfig {
  8. max: number;
  9. animated: boolean;
  10. striped: boolean;
  11. textType: string;
  12. type: string;
  13. showValue: boolean;
  14. height: string;
  15. }