a zip code crypto-currency system good for red ONLY

popover-impl.d.ts 814B

123456789101112131415161718192021222324
  1. import { App } from '../app/app';
  2. import { Config } from '../../config/config';
  3. import { NavOptions } from '../../navigation/nav-util';
  4. import { PopoverOptions } from './popover-options';
  5. import { ViewController } from '../../navigation/view-controller';
  6. /**
  7. * @hidden
  8. */
  9. export declare class PopoverImpl extends ViewController {
  10. private _app;
  11. constructor(app: App, component: any, data: any, opts: PopoverOptions, config: Config);
  12. /**
  13. * @hidden
  14. */
  15. getTransitionName(direction: string): any;
  16. /**
  17. * Present the popover instance.
  18. *
  19. * @param {NavOptions} [navOptions={}] Nav options to go with this transition.
  20. * @returns {Promise} Returns a promise which is resolved when the transition has completed.
  21. */
  22. present(navOptions?: NavOptions): Promise<any>;
  23. }