alert-config.d.ts 349 B

12345678910
  1. /**
  2. * A configuration service for the [NgbAlert](#/components/alert/api#NgbAlert) component.
  3. *
  4. * You can inject this service, typically in your root component, and customize its properties
  5. * to provide default values for all alerts used in the application.
  6. */
  7. export declare class NgbAlertConfig {
  8. dismissible: boolean;
  9. type: string;
  10. }