forinvest-cli
    Preparing search index...

    Interface IEconomicCalendarRepo

    interface IEconomicCalendarRepo {
        getById(cid: number): Promise<EconomicCalendarResponse>;
        getCalendarFromTo(
            from: string,
            to: string,
            lang: CalendarLangs,
        ): Promise<EconomicCalendarResponse[]>;
        getCalendarFromToGrouped(
            from: string,
            to: string,
            lang: CalendarLangs,
        ): Promise<EconomicCalendarResponse[]>;
        getDetail(descId: number, lang: CalendarLangs): Promise<string>;
    }
    Index

    Methods

    • Parameters

      Returns Promise<string>