a zip code crypto-currency system good for red ONLY

select-popover-component.d.ts 594B

123456789101112131415161718192021
  1. import { OnInit } from '@angular/core';
  2. import { NavParams } from '../../navigation/nav-params';
  3. import { ViewController } from '../../navigation/view-controller';
  4. /** @hidden */
  5. export interface SelectPopoverOption {
  6. text: string;
  7. value: string;
  8. disabled: boolean;
  9. checked: boolean;
  10. handler?: Function;
  11. }
  12. /** @hidden */
  13. export declare class SelectPopover implements OnInit {
  14. private navParams;
  15. private viewController;
  16. value: any;
  17. options: SelectPopoverOption[];
  18. constructor(navParams: NavParams, viewController: ViewController);
  19. ngOnInit(): void;
  20. }