tooltip-config.d.ts 623 B

1234567891011121314151617
  1. import { PlacementArray } from '../util/positioning';
  2. /**
  3. * A configuration service for the [`NgbTooltip`](#/components/tooltip/api#NgbTooltip) component.
  4. *
  5. * You can inject this service, typically in your root component, and customize the values of its properties in
  6. * order to provide default values for all the tooltips used in the application.
  7. */
  8. export declare class NgbTooltipConfig {
  9. autoClose: boolean | 'inside' | 'outside';
  10. placement: PlacementArray;
  11. triggers: string;
  12. container: string;
  13. disableTooltip: boolean;
  14. tooltipClass: string;
  15. openDelay: number;
  16. closeDelay: number;
  17. }