(
startIndex: number,
removeCount = 1,
opts?: NavOptions | null,
done?: TransitionDoneFn
)
| 286 | */ |
| 287 | @Method() |
| 288 | removeIndex( |
| 289 | startIndex: number, |
| 290 | removeCount = 1, |
| 291 | opts?: NavOptions | null, |
| 292 | done?: TransitionDoneFn |
| 293 | ): Promise<boolean> { |
| 294 | return this.queueTrns( |
| 295 | { |
| 296 | removeStart: startIndex, |
| 297 | removeCount, |
| 298 | opts, |
| 299 | }, |
| 300 | done |
| 301 | ); |
| 302 | } |
| 303 | |
| 304 | /** |
| 305 | * Set the root for the current navigation stack to a component. |
no test coverage detected