mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
* Add typings for reactstrap * Make lint happy * Do not „double-reference“ to React types
15 lines
312 B
TypeScript
15 lines
312 B
TypeScript
interface Props {
|
|
bar?: boolean;
|
|
multi?: boolean;
|
|
tag?: string;
|
|
value?: string | number;
|
|
max?: string | number;
|
|
animated?: boolean;
|
|
striped?: boolean;
|
|
color?: string;
|
|
className?: string;
|
|
barClassName?: string;
|
|
}
|
|
|
|
declare var Progress: React.StatelessComponent<Props>;
|
|
export default Progress; |