@vendasta/store
Version:
Components and data for Store
13 lines (12 loc) • 425 B
TypeScript
import { FormGroup } from '@angular/forms';
import { DropDownFormSectionData } from '../dropdown-form-section/dropdown-form-section-data';
export declare class OrderFormSectionData {
parentForm: FormGroup;
titleText: string;
subtitleText: string;
descriptionText: string;
iconUrl: string;
primarySection: DropDownFormSectionData;
subsections: DropDownFormSectionData[];
footerText?: string;
}