( name: string, )
| 552 | export type ViewTransitionInstance = null | {name: string, ...}; |
| 553 | |
| 554 | export function createViewTransitionInstance( |
| 555 | name: string, |
| 556 | ): ViewTransitionInstance { |
| 557 | return null; |
| 558 | } |
| 559 | |
| 560 | export type GestureTimeline = null; |
| 561 |
no outgoing calls
no test coverage detected