Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions js/index.d.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React from 'react';
import {ViewProps, ImageSourcePropType} from 'react-native';
import {ViewProps, ImageSourcePropType, ColorValue} from 'react-native';

export type ProgressViewProps = ViewProps & {
/**
Expand All @@ -15,12 +15,12 @@ export type ProgressViewProps = ViewProps & {
/**
* The tint color of the progress bar itself.
*/
progressTintColor?: string,
progressTintColor?: ColorValue,

/**
* The tint color of the progress bar track.
*/
trackTintColor?: string,
trackTintColor?: ColorValue,

/**
* A stretchable image to display as the progress bar.
Expand Down