@apexcura/ui-builder
Version:
A low-code UI builder library for dynamic form generation and reusable components built with React, Redux, Tailwind, and Ant Design.
11 lines (10 loc) • 543 B
TypeScript
/**
* Executes a set of component handlers with proper context and error handling
*
* @param handlers Array of handler definitions to execute
* @param context The context object containing state, dispatch, etc.
* @param additionalArgs Additional arguments to include in each handler's args
* @returns Promise that resolves when all handlers are executed
*/
export declare const executeComponentHandlers: (handlers?: any[], context?: any, additionalArgs?: Record<string, any>) => Promise<any[]>;
export default executeComponentHandlers;