mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-08-11 20:40:20 +00:00
Merge pull request #20092 from fmmoret/patch-1
Fix types on LayoutAnimation
This commit is contained in:
Vendored
+3
-3
@@ -533,9 +533,9 @@ export interface LayoutAnimationStatic {
|
||||
linear: LayoutAnimationConfig
|
||||
spring: LayoutAnimationConfig
|
||||
}
|
||||
easeInEaseOut: (config: LayoutAnimationConfig, onAnimationDidEnd?: () => void) => void
|
||||
linear: (config: LayoutAnimationConfig, onAnimationDidEnd?: () => void) => void
|
||||
spring: (config: LayoutAnimationConfig, onAnimationDidEnd?: () => void) => void
|
||||
easeInEaseOut: (onAnimationDidEnd?: () => void) => void
|
||||
linear: (onAnimationDidEnd?: () => void) => void
|
||||
spring: (onAnimationDidEnd?: () => void) => void
|
||||
}
|
||||
|
||||
type FlexAlignType = "flex-start" | "flex-end" | "center" | "stretch" | "baseline";
|
||||
|
||||
Reference in New Issue
Block a user