| 5 | import { AnimatedObject } from './AnimatedObject' |
| 6 | |
| 7 | export interface HostConfig { |
| 8 | /** Provide custom logic for native updates */ |
| 9 | applyAnimatedValues: (node: any, props: Lookup) => boolean | void |
| 10 | /** Wrap the `style` prop with an animated node */ |
| 11 | createAnimatedStyle: (style: Lookup) => Animated |
| 12 | /** Intercept props before they're passed to an animated component */ |
| 13 | getComponentProps: (props: Lookup) => typeof props |
| 14 | } |
| 15 | |
| 16 | // A stub type that gets replaced by @react-spring/web and others. |
| 17 | type WithAnimated = { |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…