@vendasta/store
Version:
Components and data for Store
10 lines (9 loc) • 389 B
TypeScript
import { OnInit } from '@angular/core';
import { DropDownFormSectionData } from '../dropdown-form-section/dropdown-form-section-data';
import { OrderFormSectionData } from './order-form-section-data';
export declare class OrderFormSectionComponent implements OnInit {
data: OrderFormSectionData;
constructor();
ngOnInit(): void;
getTopSection(): DropDownFormSectionData;
}