react-native-easy-calendar
Version:
Customizable, easy-to-use, performant calendar components for React Native
35 lines (34 loc) • 810 B
TypeScript
import React from 'react';
export declare const testLocale: {
monthsShort: string[];
name: string;
weekdays?: string[] | undefined;
months?: string[] | undefined;
weekStart?: number | undefined;
weekdaysShort?: string[] | undefined;
weekdaysMin?: string[] | undefined;
ordinal?: ((n: number) => React.ReactText) | undefined;
formats: Partial<{
LT: string;
LTS: string;
L: string;
LL: string;
LLL: string;
LLLL: string;
}>;
relativeTime: Partial<{
future: string;
past: string;
s: string;
m: string;
mm: string;
h: string;
hh: string;
d: string;
dd: string;
M: string;
MM: string;
y: string;
yy: string;
}>;
};