(
component: T,
componentProps?: ComponentProps<T> | null,
opts?: NavOptions | null,
done?: TransitionDoneFn
)
| 174 | */ |
| 175 | @Method() |
| 176 | push<T extends NavComponent>( |
| 177 | component: T, |
| 178 | componentProps?: ComponentProps<T> | null, |
| 179 | opts?: NavOptions | null, |
| 180 | done?: TransitionDoneFn |
| 181 | ): Promise<boolean> { |
| 182 | return this.insert(-1, component, componentProps, opts, done); |
| 183 | } |
| 184 | |
| 185 | /** |
| 186 | * Inserts a component into the navigation stack at the specified index. |
no test coverage detected