( selector: string, animation: AnimationMetadata | AnimationMetadata[], options: AnimationQueryOptions | null = null, )
| 1327 | * @deprecated 20.2 Use `animate.enter` or `animate.leave` instead. Intent to remove in v23 |
| 1328 | */ |
| 1329 | export function query( |
| 1330 | selector: string, |
| 1331 | animation: AnimationMetadata | AnimationMetadata[], |
| 1332 | options: AnimationQueryOptions | null = null, |
| 1333 | ): AnimationQueryMetadata { |
| 1334 | return {type: AnimationMetadataType.Query, selector, animation, options}; |
| 1335 | } |
| 1336 | |
| 1337 | /** |
| 1338 | * Use within an animation `query()` call to issue a timing gap after |
no outgoing calls
no test coverage detected
searching dependent graphs…