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 {