(
insertIndex: number,
insertComponents: NavComponent[] | NavComponentWithProps[],
opts?: NavOptions | null,
done?: TransitionDoneFn
)
| 215 | */ |
| 216 | @Method() |
| 217 | insertPages( |
| 218 | insertIndex: number, |
| 219 | insertComponents: NavComponent[] | NavComponentWithProps[], |
| 220 | opts?: NavOptions | null, |
| 221 | done?: TransitionDoneFn |
| 222 | ): Promise<boolean> { |
| 223 | return this.queueTrns( |
| 224 | { |
| 225 | insertStart: insertIndex, |
| 226 | insertViews: insertComponents, |
| 227 | opts, |
| 228 | }, |
| 229 | done |
| 230 | ); |
| 231 | } |
| 232 | |
| 233 | /** |
| 234 | * Pop a component off of the navigation stack. Navigates back from the current |
no test coverage detected