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

@ -14,7 +14,7 @@ export class AlertController implements OverlayController {
* Create an alert overlay with alert options
*/
@Method()
create(opts?: AlertOptions): Promise<HTMLIonAlertElement> {
create(opts: AlertOptions): Promise<HTMLIonAlertElement> {
return createOverlay(this.doc.createElement('ion-alert'), opts);
}