UNPKG

@it_kyryl/arbitrage_admin_schema

Version:

Schema for arbitrage admin panel

13 lines 590 B
import { Moment } from "moment-timezone"; import { Timezone } from "../../../domain/moment"; import IMomentService from "./Moment.service.interface"; declare class MomentService implements IMomentService { isTodayTheSameDateAs(date: Moment, tz?: Timezone): boolean; todayIsTheFirstDayOfTheMonth(tz?: Timezone): boolean; isTodayDayByDayOfTheMonth(day: number, tz?: Timezone): boolean; getCurDate(): Moment; getStartOfTheMonth(tz?: Timezone): Moment; getEndOfTheMonth(tz?: Timezone): Moment; } export default MomentService; //# sourceMappingURL=Moment.service.d.ts.map