chronos-ts 2.0.2 → 2.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,66 +0,0 @@
1
- /**
2
- * Locale configuration for Chronos
3
- * @module locales
4
- */
5
- import { LocaleConfig } from '../types';
6
- export type { LocaleConfig } from '../types';
7
- /**
8
- * English (US) locale configuration
9
- */
10
- export declare const en: LocaleConfig;
11
- /**
12
- * French locale configuration
13
- */
14
- export declare const fr: LocaleConfig;
15
- /**
16
- * Spanish locale configuration
17
- */
18
- export declare const es: LocaleConfig;
19
- /**
20
- * Italian locale configuration
21
- */
22
- export declare const it: LocaleConfig;
23
- /**
24
- * Arabic locale configuration (Modern Standard Arabic)
25
- */
26
- export declare const ar: LocaleConfig;
27
- /**
28
- * Russian locale configuration
29
- */
30
- export declare const ru: LocaleConfig;
31
- /**
32
- * German locale configuration
33
- */
34
- export declare const de: LocaleConfig;
35
- /**
36
- * Japanese locale configuration
37
- */
38
- export declare const ja: LocaleConfig;
39
- /**
40
- * Chinese (Simplified) locale configuration
41
- */
42
- export declare const zh: LocaleConfig;
43
- /**
44
- * Portuguese (Brazil) locale configuration
45
- */
46
- export declare const pt: LocaleConfig;
47
- /**
48
- * All available locales
49
- */
50
- export declare const locales: Record<string, LocaleConfig>;
51
- /**
52
- * Default locale
53
- */
54
- export declare const defaultLocale: LocaleConfig;
55
- /**
56
- * Get a locale by code
57
- */
58
- export declare function getLocale(code: string): LocaleConfig;
59
- /**
60
- * Register a new locale
61
- */
62
- export declare function registerLocale(config: LocaleConfig): void;
63
- /**
64
- * Get available locale codes
65
- */
66
- export declare function getAvailableLocales(): string[];