From 6f81fc2a695b2c2013d688d58254ef5f75615530 Mon Sep 17 00:00:00 2001 From: George Cheng Date: Sat, 25 May 2019 00:53:13 +0800 Subject: [PATCH] react-native-indicators: add missing common props (#35684) --- types/react-native-indicators/index.d.ts | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/types/react-native-indicators/index.d.ts b/types/react-native-indicators/index.d.ts index 1a732d8cee..3f7aaad134 100644 --- a/types/react-native-indicators/index.d.ts +++ b/types/react-native-indicators/index.d.ts @@ -15,9 +15,21 @@ export interface BaseIndicatorProps { /** * Animation duration in ms - * @default1200 + * @default 1200 */ animationDuration?: number; + + /** + * Animation toggle + * @default true + */ + animating?: boolean; + + /** + * Animation is interaction + * @default true + */ + interaction?: boolean; } export interface UIActivityIndicatorProps extends BaseIndicatorProps {