interface ExtendedFormProps extends Omit<FormProps, 'onSubmit'> { /** * submit function for editing */ onSubmit: (data: IFormData, editInstance: any) => Promise<ActionResponse>; }
import {ExtendedFormProps} from 'uxp/components';
Last updated 6 months ago