forked from DefinitelyTyped/DefinitelyTyped
-
Notifications
You must be signed in to change notification settings - Fork 0
/
react-intl.d.ts
239 lines (201 loc) · 6.68 KB
/
react-intl.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
// Type definitions for react-intl 2.0.0-beta1
// Project: http://formatjs.io/react/
// Definitions by: Bruno Grieder <https://github.com/bgrieder>, Christian Droulers <https://github.com/cdroulers>
// Definitions: https://github.com/borisyankov/DefinitelyTyped
///<reference path='../react/react.d.ts' />
declare module ReactIntl {
import React = __React;
interface Locale {
locale: string;
fields?: { [key: string]: string },
pluralRuleFunction?: (n: number, ord: boolean) => string;
}
function injectIntl<T>(clazz: T): T;
function addLocaleData(data: Locale[] | Locale): void;
function hasLocaleData(localeName: string): boolean;
interface Messages {
[key: string]: FormattedMessage.MessageDescriptor
}
function defineMessages<T extends Messages>(messages: T): T;
interface IntlShape extends React.Requireable<any> {
}
var intlShape: IntlShape;
interface FormatConfig {
locale?: string;
formats?: any;
}
interface InjectedIntlProps {
formatDate?: (date: Date, options?: FormattedDate.PropsBase) => string;
formatTime?: (date: Date, options?: FormattedTime.PropsBase) => string;
formatRelative?: (value: number, options?: FormattedRelative.PropsBase) => string;
formatNumber?: (value: number, options?: FormattedNumber.PropsBase) => string;
formatPlural?: (value: number, options?: FormattedPlural.PropsBase) => string;
formatMessage?: (messageDescriptor: FormattedMessage.MessageDescriptor, values?: Object) => string;
formatHTMLMessage?: (messageDescriptor: FormattedMessage.MessageDescriptor, values?: Object) => string;
}
module IntlComponent {
interface DateTimeFormatProps {
/*
* one of "best fit" (default) | "lookup"
*/
localeMatcher?: string;
/*
* one of "basic" (default) | "best fit"
*/
formatMatcher?: string;
timeZone?: string,
hour12?: boolean;
/*
* one of "narrow" (default) | "short" | "long"
*/
weekday?: string;
/*
* one of "narrow" (default) | "short" | "long"
*/
era?: string;
/*
* one of "numeric" (default) | "2-digit"
*/
year?: string;
/*
* one of "numeric" (default) | "2-digit" | "narrow" | "short" | "long"
*/
month?: string;
/*
* one of "numeric" (default) | "2-digit"
*/
day?: string;
/*
* one of "numeric" (default) | "2-digit"
*/
hour?: string;
/*
* one of "numeric" (default) | "2-digit"
*/
minute?: string;
/*
* one of "numeric" (default) | "2-digit"
*/
second?: string;
/*
* one of "short" (default) | "long"
*/
timeZoneName?: string;
}
}
module FormattedDate {
export interface PropsBase extends IntlComponent.DateTimeFormatProps {
format?: string;
}
export interface Props extends PropsBase {
value: Date;
}
}
class FormattedDate extends React.Component<FormattedDate.Props, any> { }
module FormattedTime {
export interface PropsBase extends IntlComponent.DateTimeFormatProps {
format?: string;
}
export interface Props extends PropsBase {
value: Date;
}
}
class FormattedTime extends React.Component<FormattedTime.Props, any> { }
module FormattedRelative {
export interface PropsBase {
/*
* one of "second", "minute", "hour", "day", "month" or "year"
*/
units?: string;
/*
* one of "best fit" (default) | "numeric"
*/
style?: string;
format?: string;
updateInterval?: number;
initialNow?: any;
}
export interface Props extends PropsBase {
value: number;
}
}
class FormattedRelative extends React.Component<FormattedRelative.Props, any> { }
module FormattedMessage {
export interface MessageDescriptor {
id: string;
description?: string;
defaultMessage?: string;
}
export interface Props extends MessageDescriptor {
values?: Object;
tagName?: string;
}
}
class FormattedMessage extends React.Component<FormattedMessage.Props, any> { }
class FormattedHTMLMessage extends React.Component<FormattedMessage.Props, any> { }
module FormattedNumber {
export interface PropsBase {
format?: string;
/*
* one of "best fit" (default) | "lookup"
*/
localeMatcher?: string;
/*
* one of "decimal" (default) | "currency" | "percent"
*/
style?: string;
currency?: string,
/*
* one of "symbol" (default) | "code" | "name"
*/
currencyDisplay?: string;
useGrouping?: boolean;
minimumIntegerDigits?: number;
minimumFractionDigits?: number;
maximumFractionDigits?: number;
minimumSignificantDigits?: number;
maximumSignificantDigits?: number;
}
export interface Props extends PropsBase {
value: number;
}
}
class FormattedNumber extends React.Component<FormattedNumber.Props, any> { }
module FormattedPlural {
export interface PropsBase {
/*
* one of "cardinal" (default) | "ordinal"
*/
style?: string;
other?: any;
zero?: any;
one?: any;
two?: any;
few?: any;
many?: any;
}
export interface Props extends PropsBase {
value: number;
}
}
class FormattedPlural extends React.Component<FormattedPlural.Props, any> { }
module IntlProvider {
export interface Props {
locale?: string;
formats?: Object;
messages?: Object;
defaultLocale?: string;
defaultFormats?: Object;
}
}
class IntlProvider extends React.Component<IntlProvider.Props, any> { }
class LocaleData extends Array<Locale> {
}
}
declare module "react-intl" {
export = ReactIntl
}
declare module "react-intl/lib/locale-data/en" {
var data: ReactIntl.LocaleData;
export = data;
}