From 0d01e43497272c935abe0f736cbf0883261f3bcf Mon Sep 17 00:00:00 2001 From: Spencer Kingman <31008961+spencerkingman-niche@users.noreply.github.com> Date: Wed, 14 Nov 2018 10:16:53 -0500 Subject: [PATCH] Update index.d.ts The `keyboard` animation type is added here. This is a valid type as described here: https://medium.com/@philipshen13/react-native-layoutanimation-267489b67a20 (check the section `LayoutAnimation.types`) --- types/react-native/index.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/types/react-native/index.d.ts b/types/react-native/index.d.ts index a6367cd802..86bce7d1aa 100644 --- a/types/react-native/index.d.ts +++ b/types/react-native/index.d.ts @@ -499,6 +499,7 @@ export interface LayoutAnimationTypes { easeInEaseOut: string; easeIn: string; easeOut: string; + keyboard: string; } export interface LayoutAnimationProperties {