From 24abb1de8ea9dde0cd38203f8e41719f8e4bd61b Mon Sep 17 00:00:00 2001 From: Marco Crespi Date: Sat, 10 Jul 2021 12:28:01 +0200 Subject: [PATCH] Add direction prop to typings of CircleSnail (#203) --- index.d.ts | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/index.d.ts b/index.d.ts index 30c8ae0..7674e47 100644 --- a/index.d.ts +++ b/index.d.ts @@ -350,6 +350,15 @@ declare module 'react-native-progress' { * @default round */ strokeCap?: 'butt' | 'square' | 'round'; + + /** + * Direction in which the circle spins, either "clockwise" or "counter-clockwise" (default). + * + * @type {('clockwise' | 'counter-clockwise')} + * @memberof CircleSnailPropTypes + * @default counter-clockwise + */ + direction?: 'clockwise' | 'counter-clockwise'; } export class Bar extends React.Component {}