ProgressProperties
export type ProgressProperties = {
Progress: CanBeState<number>,
MaximumProgress: CanBeState<number>,
[any]: any,
}
The ProgressProperties
table that is given to the ProgressBar()
function that contains data about the desired ProgressBar
.
Properties
Progress : CanBeState<number>
Sets the progress for the ProgressBar
. Can either be a State
containing a number
, or a number
.
MaximumProgress : CanBeState<number>
Sets the maximum number that the Progress
property can reach for the ProgressBar
. Can either be a State
containing a number
, or a number
.