chore(interface): update componentOnReady() and overlay interface

This commit is contained in:
Adam Bradley
2018-05-25 13:43:06 -05:00
parent 373a97283f
commit 9559f5e42d
15 changed files with 44 additions and 36 deletions

View File

@ -32,7 +32,7 @@ export class LoadingController implements OverlayController {
* Create a loading overlay with loading options.
*/
@Method()
create(opts?: LoadingOptions): Promise<HTMLIonLoadingElement> {
create(opts?: LoadingOptions): Promise<HTMLIonLoadingElement | null> {
return createOverlay(this.doc.createElement('ion-loading'), opts);
}