mirror of
https://github.com/idanoo/GoScrobble.git
synced 2024-11-22 16:35:14 +00:00
24 lines
593 B
TypeScript
24 lines
593 B
TypeScript
import * as React from 'react';
|
|
import { CSSModule } from './index';
|
|
|
|
export interface ProgressProps extends React.HTMLAttributes<HTMLElement> {
|
|
[key: string]: any;
|
|
bar?: boolean;
|
|
multi?: boolean;
|
|
tag?: string;
|
|
value?: string | number;
|
|
min?: string | number;
|
|
max?: string | number;
|
|
animated?: boolean;
|
|
striped?: boolean;
|
|
color?: string;
|
|
cssModule?: CSSModule;
|
|
barClassName?: string;
|
|
barStyle?: React.CSSProperties;
|
|
barAriaValueText?: string;
|
|
barAriaLabelledBy?: string;
|
|
}
|
|
|
|
declare class Progress extends React.Component<ProgressProps> {}
|
|
export default Progress;
|