@up-group-ui/react-controls
Version:
Up shared react controls
31 lines (30 loc) • 647 B
TypeScript
export interface UpStepValues {
success: boolean;
value: string | number;
unit?: string;
secondValueToDisplay?: string;
firstValueToDisplay?: string;
}
interface UpValues {
step: string;
success: boolean;
isFirstStep?: boolean;
}
export interface UpProgressBarTypes {
values?: Array<UpValues>;
visible: boolean;
maxValue?: number;
value?: number;
type: string;
unit?: string;
secondValueToDisplay?: string;
firstValueToDisplay?: string;
}
export interface UpTyleType {
success: boolean;
}
export interface UpPercentTyleType {
success: boolean;
size: number;
}
export {};