toolbar-base.d.ts 545B

123456789101112131415161718192021
  1. import { ElementRef, Renderer } from '@angular/core';
  2. import { Config } from '../../config/config';
  3. import { Ion } from '../ion';
  4. import { ToolbarTitle } from './toolbar-title';
  5. /**
  6. * @hidden
  7. */
  8. export declare class ToolbarBase extends Ion {
  9. private _title;
  10. constructor(config: Config, elementRef: ElementRef, renderer: Renderer);
  11. /**
  12. * @hidden
  13. */
  14. _setTitle(titleCmp: ToolbarTitle): void;
  15. /**
  16. * @hidden
  17. * Returns the toolbar title text if it exists or an empty string
  18. */
  19. getTitleText(): any;
  20. }