@bothub-chat/ui
Version:
Bothub UI Components
8 lines (7 loc) • 542 B
TypeScript
import { Locale } from '../types';
export declare const resetTimeInDate: (date: number | string | Date) => Date;
export declare const getCalendarDays: (month: number, year: number) => Date[];
export declare const getMonthName: (month: number, locale: Locale) => string;
export declare const addMont: (value: string | number | Date) => Date;
export declare const subMonth: (value: string | number | Date) => Date;
export declare const isEqualDaysOfDate: (date1: number | string | Date | null, date2: number | string | Date | null) => boolean;