import { CollectionType } from './collection-type.enum'; import momentjs from 'moment-timezone'; export interface PaymentFieldOptionsItem { id?: string; name?: string; } export interface PaymentFieldOptions { info?: any; fee?: number; fixedFee?: number; minFixedFee?: number; currency?: string; min?: number | momentjs.Moment; max?: number | momentjs.Moment; startCalendarDate?: momentjs.Moment; minLength?: number; maxLength?: number; collection?: CollectionType; items?: Array | false; }