feat(all): strong typed ComponentProps

This commit is contained in:
Manu Mtz.-Almeida
2018-08-27 00:47:10 +02:00
parent c446d1b6d1
commit 57d23753a6
17 changed files with 57 additions and 47 deletions

View File

@ -15,7 +15,7 @@ export class PickerController implements OverlayController {
* Create a picker overlay with picker options.
*/
@Method()
create(opts?: PickerOptions): Promise<HTMLIonPickerElement> {
create(opts: PickerOptions): Promise<HTMLIonPickerElement> {
return createOverlay(this.doc.createElement('ion-picker'), opts);
}