rating-config.d.ts 404 B

1234567891011
  1. /**
  2. * A configuration service for the [`NgbRating`](#/components/rating/api#NgbRating) 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 ratings used in the application.
  6. */
  7. export declare class NgbRatingConfig {
  8. max: number;
  9. readonly: boolean;
  10. resettable: boolean;
  11. }