import { ExtendedParams } from '../../base-interfaces'; import { BaseDatesAndCalendars, HolidayOutput, DateMovingConvention, EndOfMonthConvention } from './dates-and-calendars'; export interface Params extends BaseDatesAndCalendars, ExtendedParams { tag?: string; period: string; startDate: string; holidayOutputs?: HolidayOutput[]; dateMovingConvention?: DateMovingConvention; endOfMonthConvention?: EndOfMonthConvention; }