import ILang from '../../utils/string'; import IStore from '../Store'; export interface I3DPrintForm { readonly full_name: string; readonly email: string; readonly phone: string; readonly message?: string; readonly attachments?: File[]; } export interface IPickupMaterialForm { readonly company: string; readonly full_name: string; readonly nb_pallets: number; readonly phone: string; readonly address: string; readonly attachments?: File[]; } export interface ITransportQuoteForm { readonly company: string; readonly contact_full_name: string; readonly email: string; readonly phone: string; readonly transport_type: string; readonly date: Date; readonly message?: string; } export interface IBorrowToolsForm { readonly tools: ITool[]; readonly full_name: string; readonly date: Date; readonly pickup_store?: IStore; readonly message?: string; } export interface IVegetalsForm { readonly company: string; readonly client_number: string; readonly full_name: string; readonly email: string; readonly phone: string; readonly vegetal_info?: string; readonly date: Date; readonly address: string; readonly message?: string; readonly attachments?: File[]; } export interface ITransportForm { readonly company: string; readonly full_name: string; readonly email: string; readonly phone: string; readonly date: Date; readonly truck: string; readonly message?: string; } interface ITool { readonly name: ILang; readonly description: ILang; readonly price: number; readonly imgPath: string; } export {};