@appbuckets/react-ui-smart-components
Version:
UI Extended Components that work with @appbuckets/react-client and @appbuckets/react-ui
10 lines (9 loc) • 328 B
TypeScript
import type { AnyObject } from '@appbuckets/react-ui-core';
import type { FormBuilderConfig, FormComponent } from './FormBuilder.types';
export default function buildFormAction<
Dto extends AnyObject,
Props extends {},
Result
>(
configuration: FormBuilderConfig<Dto, Props, Result>
): FormComponent<Dto, Props, Result>;