UNPKG

@chatui/core

Version:

The React library for Chatbot UI

11 lines (10 loc) 265 B
export type IDate = number | string | Date; type DateFormats = { [p: string]: string; }; interface TimeLocale { weekdays: string[]; formats: DateFormats; } declare function formatDate(date: IDate, locale: TimeLocale): string; export default formatDate;