Browse Source

Mark params parameter as optional in Navigation.pop

Guy Carmeli 6 years ago
parent
commit
1796e14ddf
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      lib/src/Navigation.ts

+ 1
- 1
lib/src/Navigation.ts View File

105
   /**
105
   /**
106
    * Pop a component from the stack, regardless of it's position.
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
     return this.commands.pop(componentId, params);
109
     return this.commands.pop(componentId, params);
110
   }
110
   }
111
 
111