Selaa lähdekoodia

Mark params parameter as optional in Navigation.pop

Guy Carmeli 6 vuotta sitten
vanhempi
commit
1796e14ddf
1 muutettua tiedostoa jossa 1 lisäystä ja 1 poistoa
  1. 1
    1
      lib/src/Navigation.ts

+ 1
- 1
lib/src/Navigation.ts Näytä tiedosto

@@ -105,7 +105,7 @@ export class Navigation {
105 105
   /**
106 106
    * Pop a component from the stack, regardless of it's position.
107 107
    */
108
-  public pop(componentId: string, params): Promise<any> {
108
+  public pop(componentId: string, params?): Promise<any> {
109 109
     return this.commands.pop(componentId, params);
110 110
   }
111 111