Files
react-native-paper/typings/components/ProgressBar.d.ts
Julian Hundeloh 75e7c52991 fix: fix typescript types (Avatar, ProgressBar) (#842)
* fix: update types

* fix: fix typo
2019-02-17 13:27:44 +02:00

14 lines
314 B
TypeScript

import * as React from 'react';
import { ThemeShape } from '../types';
export interface ProgressBarProps {
progress: number;
animating?: boolean;
indeterminate?: boolean;
color?: string;
style?: any;
theme?: ThemeShape;
}
export declare class ProgressBar extends React.Component<ProgressBarProps> {}