UNPKG

ionic-angular

Version:

A powerful framework for building mobile and progressive web apps with JavaScript and Angular 2

20 lines (19 loc) 555 B
import { OnInit } from '@angular/core'; import { NavParams } from '../../navigation/nav-params'; import { ViewController } from '../../navigation/view-controller'; /** @hidden */ export interface SelectPopoverOption { text: string; value: string; disabled: boolean; checked: boolean; } /** @hidden */ export declare class SelectPopover implements OnInit { private navParams; private viewController; value: any; private options; constructor(navParams: NavParams, viewController: ViewController); ngOnInit(): void; }