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 f7c98e5 commit e622f17Copy full SHA for e622f17
types/universal.d.ts
@@ -64,7 +64,7 @@ export interface SpringBaseProps {
64
onStart?(): void
65
}
66
67
-export interface SpringProps<DS extends object = {}> {
+export interface SpringProps<DS extends object = {}> extends SpringBaseProps {
68
/**
69
* Base styles
70
* @default {}
@@ -87,11 +87,6 @@ export interface SpringProps<DS extends object = {}> {
87
* Takes a function that receives interpolated styles
88
*/
89
children?: SpringRendererFunc<DS>
90
- /**
91
- * Prevents animation if true, you can also pass individual keys
92
- * @default false
93
- */
94
- immediate?: boolean | string[] | ((key: string) => boolean)
95
96
* Inject props
97
* @default undefined
0 commit comments