-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy pathdate-and-time.d.ts
343 lines (302 loc) · 10.8 KB
/
date-and-time.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
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
/**
* Formatting date and time objects (Date -> String)
* @param dateObj - A Date object
* @param formatString - A format string
* @param [utc] - Output as UTC
* @returns A formatted string
*/
export function format(dateObj: Date, formatString: string, utc?: boolean): string;
/**
* Formatting date and time objects (Date -> String)
* @param dateObj - A Date object
* @param compiledObj - A compiled object of format string
* @param [utc] - Output as UTC
* @returns A formatted string
*/
export function format(dateObj: Date, compiledObj: string[], utc?: boolean): string;
/**
* Parsing date and time strings (String -> Date)
* @param dateString - A date and time string
* @param formatString - A format string
* @param [utc] - Input as UTC
* @returns A Date object
*/
export function parse(dateString: string, formatString: string, utc?: boolean): Date;
/**
* Parsing date and time strings (String -> Date)
* @param dateString - A date and time string
* @param compiledObj - A compiled object of format string
* @param [utc] - Input as UTC
* @returns A Date object
*/
export function parse(dateString: string, compiledObj: string[], utc?: boolean): Date;
/**
* Compiling format strings
* @param formatString - A format string
* @returns A compiled object
*/
export function compile(formatString: string): string[];
/** Preparse result object */
export type PreparseResult = {
/** Year */
Y: number;
/** Month */
M: number;
/** Day */
D: number;
/** 24-hour */
H: number;
/** Meridiem */
A: number;
/** 12-hour */
h: number;
/** Minute */
m: number;
/** Second */
s: number;
/** Millisecond */
S: number;
/** Timezone offset */
Z: number;
/** Pointer offset */
_index: number;
/** Length of the date string */
_length: number;
/** Token matching count */
_match: number;
};
/**
* Pre-parsing date and time strings
* @param dateString - A date and time string
* @param formatString - A format string
* @returns A pre-parsed result object
*/
export function preparse(dateString: string, formatString: string): PreparseResult;
/**
* Pre-parsing date and time strings
* @param dateString - A date and time string
* @param compiledObj - A compiled object of format string
* @returns A pre-parsed result object
*/
export function preparse(dateString: string, compiledObj: string[]): PreparseResult;
/**
* Date and time string validation
* @param dateString - A date and time string
* @param formatString - A format string
* @returns Whether the date and time string is a valid date and time
*/
export function isValid(dateString: string, formatString: string): boolean;
/**
* Date and time string validation
* @param dateString - A date and time string
* @param compiledObj - A compiled object of format string
* @returns Whether the date and time string is a valid date and time
*/
export function isValid(dateString: string, compiledObj: string[]): boolean;
/**
* Date and time string validation
* @param preparseResult - A pre-parsed result object
* @returns Whether the date and time string is a valid date and time
*/
export function isValid(preparseResult: PreparseResult): boolean;
/**
* Format transformation of date and time strings (String -> String)
* @param dateString - A date and time string
* @param formatString1 - A format string before transformation
* @param formatString2 - A format string after transformation
* @param [utc] - Output as UTC
* @returns A formatted string
*/
export function transform(dateString: string, formatString1: string, formatString2: string, utc?: boolean): string;
/**
* Format transformation of date and time strings (String -> String)
* @param dateString - A date and time string
* @param formatString - A format string before transformation
* @param compiledObj - A compiled object of format string after transformation
* @param [utc] - Output as UTC
* @returns A formatted string
*/
export function transform(dateString: string, formatString: string, compiledObj: string[], utc?: boolean): string;
/**
* Format transformation of date and time strings (String -> String)
* @param dateString - A date and time string
* @param compiledObj - A compiled object of format string before transformation
* @param formatString - A format string after transformation
* @param [utc] - Output as UTC
* @returns A formatted string
*/
export function transform(dateString: string, compiledObj: string[], formatString: string, utc?: boolean): string;
/**
* Format transformation of date and time strings (String -> String)
* @param dateString - A date and time string
* @param compiledObj1 - A compiled object of format string before transformation
* @param compiledObj2 - A compiled object of format string after transformation
* @param [utc] - Output as UTC
* @returns A formatted string
*/
export function transform(dateString: string, compiledObj1: string[], compiledObj2: string[], utc?: boolean): string;
/**
* Adding years
* @param dateObj - A Date object
* @param years - The number of years to add
* @param [utc] - If true, calculates the date in UTC
* @returns The Date object after adding the specified number of years
*/
export function addYears(dateObj: Date, years: number, utc?: boolean): Date;
/**
* Adding months
* @param dateObj - A Date object
* @param months - The number of months to add
* @param [utc] - If true, calculates the date in UTC
* @returns The Date object after adding the specified number of months
*/
export function addMonths(dateObj: Date, months: number, utc?: boolean): Date;
/**
* Adding days
* @param dateObj - A Date object
* @param days - The number of days to add
* @param [utc] - If true, calculates the date in UTC
* @returns The Date object after adding the specified number of days
*/
export function addDays(dateObj: Date, days: number, utc?: boolean): Date;
/**
* Adding hours
* @param dateObj - A Date object
* @param hours - The number of hours to add
* @returns The Date object after adding the specified number of hours
*/
export function addHours(dateObj: Date, hours: number): Date;
/**
* @deprecated The `utc` parameter is ignored. The function always returns the same result regardless of this value.
* @param dateObj - A Date object
* @param hours - The number of hours to add
* @param [utc] - If true, calculates the date in UTC
* @returns The Date object after adding the specified number of hours
*/
export function addHours(dateObj: Date, hours: number, utc?: boolean): Date;
/**
* Adding minutes
* @param dateObj - A Date object
* @param minutes - The number of minutes to add
* @returns The Date object after adding the specified number of minutes
*/
export function addMinutes(dateObj: Date, minutes: number): Date;
/**
* @deprecated The `utc` parameter is ignored. The function always returns the same result regardless of this value.
* @param dateObj - A Date object
* @param minutes - The number of minutes to add
* @param [utc] - If true, calculates the date in UTC
* @returns The Date object after adding the specified number of minutes
*/
export function addMinutes(dateObj: Date, minutes: number, utc?: boolean): Date;
/**
* Adding seconds
* @param dateObj - A Date object
* @param seconds - The number of seconds to add
* @returns The Date object after adding the specified number of seconds
*/
export function addSeconds(dateObj: Date, seconds: number): Date;
/**
* @deprecated The `utc` parameter is ignored. The function always returns the same result regardless of this value.
* @param dateObj - A Date object
* @param seconds - The number of seconds to add
* @param [utc] - If true, calculates the date in UTC
* @returns The Date object after adding the specified number of seconds
*/
export function addSeconds(dateObj: Date, seconds: number, utc?: boolean): Date;
/**
* Adding milliseconds
* @param dateObj - A Date object
* @param milliseconds - The number of milliseconds to add
* @returns The Date object after adding the specified number of milliseconds
*/
export function addMilliseconds(dateObj: Date, milliseconds: number): Date;
/**
* @deprecated The `utc` parameter is ignored. The function always returns the same result regardless of this value.
* @param dateObj - A Date object
* @param milliseconds - The number of milliseconds to add
* @param [utc] - If true, calculates the date in UTC
* @returns The Date object after adding the specified number of milliseconds
*/
export function addMilliseconds(dateObj: Date, milliseconds: number, utc?: boolean): Date;
/** Subtraction result object */
export type SubtractResult = {
/** Returns the result value in milliseconds. */
toMilliseconds: () => number;
/** Returns the result value in seconds. */
toSeconds: () => number;
/** Returns the result value in minutes. This value might be a real number. */
toMinutes: () => number;
/** Returns the result value in hours. This value might be a real number. */
toHours: () => number;
/** Returns the result value in days. This value might be a real number. */
toDays: () => number;
};
/**
* Subtracting two dates (date1 - date2)
* @param date1 - A Date object
* @param date2 - A Date object
* @returns The result object of subtracting date2 from date1
*/
export function subtract(date1: Date, date2: Date): SubtractResult;
/**
* Whether a year is a leap year
* @param y - A year to check
* @returns Whether the year is a leap year
*/
export function isLeapYear(y: number): boolean;
/**
* Comparison of two dates
* @param date1 - A Date object
* @param date2 - A Date object
* @returns Whether the two dates are the same day (time is ignored)
*/
export function isSameDay(date1: Date, date2: Date): boolean;
/** Locale installer */
export type Locale = (proto: unknown) => string;
/**
* Changing locales
* @param [locale] - A locale installer
* @returns The current language code
*/
export function locale(locale?: Locale): string;
/**
* Changing locales
* @param [locale] - A language code
* @returns The current language code
*/
export function locale(locale?: string): string;
export type Resources = {
[key: string]: string[] | string[][]
};
export type Formatter = {
};
export type Parser = {
};
export type Extender = {
[key: string]: (...args: any) => any
};
/** Extension object */
export type Extension = {
res?: Resources,
formatter?: Formatter,
parser?: Parser,
extender?: Extender
};
/**
* Functional extension
* @param extension - An extension object
*/
export function extend(extension: Extension): void;
/** Plugin installer */
export type Plugin = (proto: unknown, date?: unknown) => string;
/**
* Importing plugins
* @param plugin - A plugin installer
*/
export function plugin(plugin: Plugin): void;
/**
* Importing plugins
* @param plugin - A plugin name
*/
export function plugin(plugin: string): void;