@cometchat/chat-uikit-react-native
Version:
Ready-to-use Chat UI Components for React Native
13 lines (10 loc) • 309 B
text/typescript
import type { DefaultLocale } from '../Locales';
export type Locale = typeof DefaultLocale;
export interface LocaleData {
// firstDayOfWeek: Function;
// longDateFormat: Function;
months: () => string[];
monthsShort: () => string[];
weekdaysMin: () => string[];
weekdaysShort: () => string[];
}