Type Parameters
- Data extends unknown = any
- Result = void
Returns {
errors: IError[];
execute: ((items: IProcess<Data>[]) => void);
label: string;
loading: boolean;
progress: number;
}
An object containing the execute function, loading state, progress, and errors.
Readonly
errors: IError[]
Readonly
execute: ((items: IProcess<Data>[]) => void)
- (items): void
Returns void
label: string
loading: boolean
Readonly
progress: number
Executes a process asynchronously with progress tracking and error handling.