export interface FederalReserveBankHoliday { name: string; date: string; observedOn?: string | undefined; } /** * @name getAllUSFederalReserveBankHolidays * @summary Get all US Federal Rserve Bank Holidays for the year * * @description * US Federal Reserve Bank is closed on the holidays outlined in https://www.federalreserve.gov/aboutthefed/k8.htm. * If a holiday falls on a Sunday, it's observed the following Monday. * This function calculates all the US Federal Reserve Bank holidays for a given year. * * @param year - the year for which US Federal Bank Holidays should be calculated for * @returns list of holiday name and actual or observed date of US Federal Reserve Bank holidays for the given year */ export default function (year: number): FederalReserveBankHoliday[];