@manojadams/metaforms-core
Version:
React Library for rendering dynamic forms from json schema
10 lines (9 loc) • 449 B
TypeScript
import { IFormConfig, IFormConfigExtended } from "../constants/model-interfaces";
import { TFormType, TSectionLayout } from "../constants/types";
export default class FormConfig implements IFormConfig {
type: TFormType;
sectionLayout?: TSectionLayout;
fieldLayout?: string;
config?: IFormConfigExtended;
constructor(type: TFormType, sectionLayout?: TSectionLayout, fieldLayout?: string, config?: IFormConfigExtended);
}