UNPKG

594 BTypeScriptView Raw
1import { OnInit } from '@angular/core';
2import { NavParams } from '../../navigation/nav-params';
3import { ViewController } from '../../navigation/view-controller';
4/** @hidden */
5export interface SelectPopoverOption {
6 text: string;
7 value: string;
8 disabled: boolean;
9 checked: boolean;
10 handler?: Function;
11}
12/** @hidden */
13export 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}