We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f6cb851 commit d2bcc82Copy full SHA for d2bcc82
spring/src/context.ts
@@ -0,0 +1,11 @@
1
+import { FluidValue } from "./fluids"
2
+
3
+export type TreeContext = {
4
+ /**
5
+ * Any animated values found when updating the payload of an `AnimatedObject`
6
+ * are also added to this `Set` to be observed by an animated component.
7
+ */
8
+ dependencies: Set<FluidValue> | null
9
+}
10
11
+export const TreeContext: TreeContext = { dependencies: null }
0 commit comments