kwikid-forms
Version:
KwikID's JSON Configuration based Forms Renderer and Builder
14 lines (13 loc) • 482 B
TypeScript
export interface ConverterContext {
reduxData?: Record<string, unknown>;
userConfig?: any;
}
export declare class Converter {
private readonly context;
constructor(context?: ConverterContext);
private resolveLanguage;
updateFormConfigMiscellaneous(formConfig: any, args: any): any;
updateFormConfigFromUserConfig(formConfig: any, userConfig: any): any;
updateFormConfigProperties(formConfig: any): any;
convertFormConfig(formConfig: any): any;
}