@formql/core
Version:
FormQL - A framework for building dynamic forms
14 lines (13 loc) • 335 B
TypeScript
import { FormSection } from './form-section.model';
import { GridStyle } from './style.model';
export interface FormPage {
pageId: string;
sections: FormSection[];
structure: string;
template: PageTemplate;
}
export interface PageTemplate {
title: string;
body: GridStyle;
reRender: boolean;
}