From cdee145e60b2ff9a24d1b860e8ab7bf9459e2949 Mon Sep 17 00:00:00 2001 From: koloboid Date: Thu, 19 Oct 2023 13:12:20 +0300 Subject: [PATCH] Add isIndeterminate to ProgressViewProps --- js/index.d.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/js/index.d.ts b/js/index.d.ts index 867dbd7b5..a1d39dcd0 100644 --- a/js/index.d.ts +++ b/js/index.d.ts @@ -31,5 +31,10 @@ export type ProgressViewProps = ViewProps & { * A stretchable image to display behind the progress bar. */ trackImage?: ImageSourcePropType, + + /** + * Turns the progress bar into an indeterminate progress bar + */ + isIndeterminate?: boolean, }; export class ProgressView extends React.Component {}