-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathglobal.d.ts
836 lines (835 loc) · 26.6 KB
/
global.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
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
declare module '@lapaliv/datetime-formatter' {
export default class DateTimeFormatter {
static globalMonthNames: string[];
static globalShortMonthNames: string[];
static globalDayNames: string[];
static globalShortDayNames: string[];
year: number;
month: number;
day: number;
hours: number;
minutes: number;
seconds: number;
microseconds: number;
offset: number;
monthNames: string[];
shortMonthNames: string[];
dayNames: string[];
shortDayNames: string[];
/**
* Creates an instance with the current time
*/
static now(): DateTimeFormatter;
/**
* Parse date from custom string
* @param target
*/
static parse(target: string | Date | number | DateTimeFormatter | any): DateTimeFormatter;
/**
* Creates an instance with the date in the format
* @param format
* @param date
*/
static createFromFormat(format: string, date: string): DateTimeFormatter;
/**
* Set the translations
* @param payload
*/
static setGlobalTranslations(payload: Translation): void;
/**
* Parses the date from the transmitted timestamp
* @param timestamp
*/
static createFromTimestamp(timestamp: number): DateTimeFormatter;
/**
* Parses the date from the transmitted Date object
* @param date
*/
static createFromDate(date: Date): DateTimeFormatter;
constructor();
constructor(date: Date);
constructor(timestamp: number);
constructor(year: number, month: number, day: number, hours?: number, minutes?: number, seconds?: number, microseconds?: number);
/**
* Adds one second to the date
*/
addSecond(): DateTimeFormatter;
/**
* Adds many seconds to the date
* @param count
*/
addSeconds(count: number): DateTimeFormatter;
/**
* Adds one minute to the date
*/
addMinute(): DateTimeFormatter;
/**
* Adds many minutes to the date
* @param count
*/
addMinutes(count: number): DateTimeFormatter;
/**
* Adds one hour to the date
*/
addHour(): DateTimeFormatter;
/**
* Adds many hours to the date
* @param count
*/
addHours(count: number): DateTimeFormatter;
/**
* Adds one day to the date
*/
addDay(): DateTimeFormatter;
/**
* Adds many days to the date
* @param count
*/
addDays(count: number): DateTimeFormatter;
/**
* Adds one week to the date
*/
addWeek(): DateTimeFormatter;
/**
* Adds many weeks to the date
* @param count
*/
addWeeks(count: number): DateTimeFormatter;
/**
* Adds one month to the date
*/
addMonth(): DateTimeFormatter;
/**
* Adds many months to the date
* @param count
*/
addMonths(count: number): DateTimeFormatter;
/**
* Adds one year to the date
*/
addYear(): DateTimeFormatter;
/**
* Adds many years to the date
* @param count
*/
addYears(count: number): DateTimeFormatter;
/**
* Adds one decade to the date
*/
addDecade(): DateTimeFormatter;
/**
* Adds many decades to the date
* @param count
*/
addDecades(count: number): DateTimeFormatter;
/**
* Adds one decade to the date
*/
addCentury(): DateTimeFormatter;
/**
* Adds many centuries to the date
* @param count
*/
addCenturies(count: number): DateTimeFormatter;
/**
* Subtracts one second from the current date
*/
subSecond(): DateTimeFormatter;
/**
* Subtracts many seconds from the current date
* @param count
*/
subSeconds(count: number): DateTimeFormatter;
/**
* Subtracts one minute from the current date
*/
subMinute(): DateTimeFormatter;
/**
* Subtracts many minutes from the current date
* @param count
*/
subMinutes(count: number): DateTimeFormatter;
/**
* Subtracts one hour from the current date
*/
subHour(): DateTimeFormatter;
/**
* Subtracts many hours from the current date
* @param count
*/
subHours(count: number): DateTimeFormatter;
/**
* Subtracts one day from the current date
*/
subDay(): DateTimeFormatter;
/**
* Subtracts many days from the current date
* @param count
*/
subDays(count: number): DateTimeFormatter;
/**
* Subtracts one week from the current date
*/
subWeek(): DateTimeFormatter;
/**
* Subtracts many weeks from the current date
* @param count
*/
subWeeks(count: number): DateTimeFormatter;
/**
* Subtracts one month from the current date
*/
subMonth(): DateTimeFormatter;
/**
* Subtracts many months from the current date
* @param count
*/
subMonths(count: number): DateTimeFormatter;
/**
* Subtracts one year from the current date
*/
subYear(): DateTimeFormatter;
/**
* Subtracts many years from the current date
* @param count
*/
subYears(count: number): DateTimeFormatter;
/**
* Subtracts one decade from the current date
*/
subDecade(): DateTimeFormatter;
/**
* Subtracts many decades from the current date
*/
subDecades(count: number): DateTimeFormatter;
/**
* Subtracts one century from the current date
*/
subCentury(): DateTimeFormatter;
/**
* Subtracts many centuries from the current date
*/
subCenturies(count: number): DateTimeFormatter;
/**
* Converts to the `Y-m-d` format
*/
toDateString(): string;
/**
* Converts to the `Y-m-d H:i:s` format
*/
toDateTimeString(): string;
/**
* Converts to the Unix timestamp with milliseconds
*/
toJsTimestamp(): number;
/**
* Converts to the Unix timestamp (without milliseconds)
*/
toTimestamp(): number;
/**
* Converts to the Date object
*/
toDate(): Date;
/**
* Clones an instance and returns it
*/
clone(): DateTimeFormatter;
/**
* Returns the count of full microseconds between the current date and the transmitted date
* @param date
*/
diffInMicroseconds(date: DateTimeFormatter): number;
/**
* Returns the count of full milliseconds between the current date and the transmitted date
* @param date
*/
diffInMilliseconds(date: DateTimeFormatter): number;
/**
* Returns the count of full seconds between the current date and the transmitted date
* @param date
*/
diffInSeconds(date: DateTimeFormatter): number;
/**
* Returns the count of full minutes between the current date and the transmitted date
* @param date
*/
diffInMinutes(date: DateTimeFormatter): number;
/**
* Returns the count of full hours between the current date and the transmitted date
* @param date
*/
diffInHours(date: DateTimeFormatter): number;
/**
* Returns the count of full days between the current date and the transmitted date
* @param date
*/
diffInDays(date: DateTimeFormatter): number;
/**
* Returns the count of full months between the current date and the transmitted date
* @param date
*/
diffInMonths(date: DateTimeFormatter): number;
/**
* Returns the count of full years between the current date and the transmitted date
* @param date
*/
diffInYears(date: DateTimeFormatter): number;
/**
* Returns the count of full decades between the current date and the transmitted date
* @param date
*/
diffInDecades(date: DateTimeFormatter): number;
/**
* Returns the count of full centuries between the current date and the transmitted date
* @param date
*/
diffInCenturies(date: DateTimeFormatter): number;
/**
* Converts the date to the target format
* @param target
*/
format(target: string): string;
/**
* Goes to the beginning of the millisecond
*/
startOfMillisecond(): DateTimeFormatter;
/**
* Goes to the beginning of the second
*/
startOfSecond(): DateTimeFormatter;
/**
* Goes to the beginning of the minute
*/
startOfMinute(): DateTimeFormatter;
/**
* Goes to the beginning of the hour
*/
startOfHour(): DateTimeFormatter;
/**
* Goes to the beginning of the day
*/
startOfDay(): DateTimeFormatter;
/**
* Goes to the beginning of the week
*/
startOfWeek(): DateTimeFormatter;
/**
* Goes to the beginning of the month
*/
startOfMonth(): DateTimeFormatter;
/**
* Goes to the beginning of the half year
*/
startOfHalfYear(): DateTimeFormatter;
/**
* Goes to the beginning of the year
*/
startOfYear(): DateTimeFormatter;
/**
* Goes to the beginning of the decade
*/
startOfDecade(): DateTimeFormatter;
/**
* Goes to the beginning of the decade
*/
startOfCentury(): DateTimeFormatter;
/**
* Goes to the end of the millisecond
*/
endOfMillisecond(): DateTimeFormatter;
/**
* Goes to the end of the minute
*/
endOfSecond(): DateTimeFormatter;
/**
* Goes to the end of the minute
*/
endOfMinute(): DateTimeFormatter;
/**
* Goes to the end of the hour
*/
endOfHour(): DateTimeFormatter;
/**
* Goes to the end of the day
*/
endOfDay(): DateTimeFormatter;
/**
* Goes to the end of the week
*/
endOfWeek(): DateTimeFormatter;
/**
* Goes to the end of the day
*/
endOfMonth(): DateTimeFormatter;
/**
* Goes to the end of the year
*/
endOfHalfYear(): DateTimeFormatter;
/**
* Goes to the end of the year
*/
endOfYear(): DateTimeFormatter;
/**
* Goes to the end of decade
*/
endOfDecade(): DateTimeFormatter;
/**
* Goes to the end of century
*/
endOfCentury(): DateTimeFormatter;
/**
* Returns `true` if the date in future
*/
isFuture(): boolean;
/**
* Returns `true` if the year is a leap year
*/
isLeapYear(): boolean;
/**
* Returns `true` if the date in past
*/
isPast(): boolean;
/**
* Returns `true` if the month is next from the current
*/
isNextMonth(): boolean;
/**
* Returns `true` if the year is next from the current
*/
isNextYear(): boolean;
/**
* Returns `true` if the month is previous from the current
*/
isPrevMonth(): boolean;
/**
* Returns `true` if the year is previous from the current
*/
isPrevYear(): boolean;
/**
* Returns `true` if the date equals now
*/
isToday(): boolean;
/**
* Returns `true` if the date is tomorrow
*/
isTomorrow(): boolean;
/**
* Returns `true` if the date is yesterday
*/
isYesterday(): boolean;
/**
* Returns `true` if the current date is in current microsecond
*/
isCurrentMicrosecond(): boolean;
/**
* Returns `true` if the current date is in current millisecond
*/
isCurrentMillisecond(): boolean;
/**
* Returns `true` if the current date is in current second
*/
isCurrentSecond(): boolean;
/**
* Returns `true` if the current date is in current minute
*/
isCurrentMinute(): boolean;
/**
* Returns `true` if the current date is in current hour
*/
isCurrentHour(): boolean;
/**
* Returns `true` if the current date is in current day
*/
isCurrentDay(): boolean;
/**
* Returns `true` if the current date is in current month
*/
isCurrentMonth(): boolean;
/**
* Returns `true` if the current date is in current year
*/
isCurrentYear(): boolean;
/**
* Returns 'true' if the current date is in the current decade
*/
isCurrentDecade(): boolean;
/**
* Returns 'true' if the current date is in the current century
*/
isCurrentCentury(): boolean;
/**
* Returns `true` if the current month is January
*/
isJanuary(): boolean;
/**
* Returns `true` if the current month is February
*/
isFebruary(): boolean;
/**
* Returns `true` if the current month is March
*/
isMarch(): boolean;
/**
* Returns `true` if the current month is April
*/
isApril(): boolean;
/**
* Returns `true` if the current month is May
*/
isMay(): boolean;
/**
* Returns `true` if the current month is June
*/
isJune(): boolean;
/**
* Returns `true` if the current month is July
*/
isJuly(): boolean;
/**
* Returns `true` if the current month is August
*/
isAugust(): boolean;
/**
* Returns `true` if the current month is September
*/
isSeptember(): boolean;
/**
* Returns `true` if the current month is October
*/
isOctober(): boolean;
/**
* Returns `true` if the current month is November
*/
isNovember(): boolean;
/**
* Returns `true` if the current month is December
*/
isDecember(): boolean;
/**
* Returns the microseconds
*/
getMicroseconds(): number;
/**
* Returns the milliseconds
*/
getMilliseconds(): number;
/**
* Returns the seconds
*/
getSeconds(): number;
/**
* Returns the minutes
*/
getMinutes(): number;
/**
* Returns the hours
*/
getHours(): number;
/**
* Returns the day
*/
getDay(): number;
/**
* Returns the month
*/
getMonth(): number;
/**
* Returns the year
*/
getYear(): number;
/**
* Setter for microseconds
* @param value
*/
setMicroseconds(value: number): DateTimeFormatter;
/**
* Setter for milliseconds
* @param value
*/
setMilliseconds(value: number): DateTimeFormatter;
/**
* Setter for seconds
* @param value
*/
setSeconds(value: number): DateTimeFormatter;
/**
* Setter for minutes
* @param value
*/
setMinutes(value: number): DateTimeFormatter;
/**
* Setter for hours
* @param value
*/
setHours(value: number): DateTimeFormatter;
/**
* Setter for day
* @param value
*/
setDay(value: number): DateTimeFormatter;
/**
* Setter for month
* @param value
*/
setMonth(value: number): DateTimeFormatter;
/**
* Setter for year
* @param value
*/
setYear(value: number): DateTimeFormatter;
/**
* Returns the first day in year on full week
*/
getFirstDayInYearOnFullWeek(): number;
/**
* Returns count days in the month
*/
getCountDaysInMonth(): number;
/**
* Returns the number of the day on week (monday - 1, ..., saturday - 6, sunday - 0)
*/
getDayOfWeek(): number;
/**
* * Returns the number of the day on week (monday - 1, ..., saturday - 6, sunday - 7)
*/
getDayOfWeekIso(): number;
/**
* Set the translations
* @param payload
*/
setTranslations(payload: Translation): DateTimeFormatter;
/**
* Returns `true` if the current date equals the transmitted date
* @param target
*/
equal(target: DateTimeFormatter | number | Date): boolean;
/**
* Returns `true` if the current date equals the transmitted date
* without microseconds
* @param target
*/
equalWithoutMicroseconds(target: DateTimeFormatter | number | Date): boolean;
/**
* Returns `true` if the current date equals the transmitted date
* without milliseconds
* @param target
*/
equalWithoutMilliseconds(target: DateTimeFormatter | number | Date): boolean;
/**
* Returns `true` if the current date equals the transmitted date
* without seconds and microseconds
* @param target
*/
equalWithoutSeconds(target: DateTimeFormatter | number | Date): boolean;
/**
* Returns `true` if the current date equals the transmitted date
* without minutes, seconds and microseconds
* @param target
*/
equalWithoutMinutes(target: DateTimeFormatter | number | Date): boolean;
/**
* Returns `true` if the current date equals the transmitted date
* without hours, minutes, seconds and microseconds
* @param target
*/
equalWithoutHours(target: DateTimeFormatter | number | Date): boolean;
/**
* Returns `true` if the current date equals the transmitted date
* without days, hours, minutes, seconds and microseconds
* @param target
*/
equalWithoutDays(target: DateTimeFormatter | number | Date): boolean;
/**
* Returns `true` if the current date equals the transmitted date
* without months, days, hours, minutes, seconds and microseconds
* @param target
*/
equalWithoutMonths(target: DateTimeFormatter | number | Date): boolean;
/**
* Returns `true` if the current date equals the transmitted date
* @param target
*/
notEqual(target: DateTimeFormatter | number | Date): boolean;
/**
* Returns `true` if the current date equals the transmitted date
* without microseconds
* @param target
*/
notEqualWithoutMicroseconds(target: DateTimeFormatter | number | Date): boolean;
/**
* Returns `true` if the current date equals the transmitted date
* without milliseconds
* @param target
*/
notEqualWithoutMilliseconds(target: DateTimeFormatter | number | Date): boolean;
/**
* Returns `true` if the current date equals the transmitted date
* without seconds and microseconds
* @param target
*/
notEqualWithoutSeconds(target: DateTimeFormatter | number | Date): boolean;
/**
* Returns `true` if the current date equals the transmitted date
* without minutes, seconds and microseconds
* @param target
*/
notEqualWithoutMinutes(target: DateTimeFormatter | number | Date): boolean;
/**
* Returns `true` if the current date equals the transmitted date
* without hours, minutes, seconds and microseconds
* @param target
*/
notEqualWithoutHours(target: DateTimeFormatter | number | Date): boolean;
/**
* Returns `true` if the current date equals the transmitted date
* without days, hours, minutes, seconds and microseconds
* @param target
*/
notEqualWithoutDays(target: DateTimeFormatter | number | Date): boolean;
/**
* Returns `true` if the current date equals the transmitted date
* without months, days, hours, minutes, seconds and microseconds
* @param target
*/
notEqualWithoutMonths(target: DateTimeFormatter | number | Date): boolean;
/**
* Returns the number of the day in the year
*/
getDayOfYear(): number;
/**
* Returns the index of microsecond in which date is included
* @param startedFrom
* @param microseconds
*/
getIndexOfMicrosecondPeriodOnWhichDateIsIncluded(startedFrom: DateTimeFormatter, ...microseconds: Array<number> | Array<Array<number>>): number;
/**
* Returns the index of millisecond in which date is included
* @param startedFrom
* @param milliseconds
*/
getIndexOfMillisecondPeriodOnWhichDateIsIncluded(startedFrom: DateTimeFormatter, ...milliseconds: Array<number> | Array<Array<number>>): number;
/**
* Returns the index of second in which date is included
* @param startedFrom
* @param seconds
*/
getIndexOfSecondPeriodOnWhichDateIsIncluded(startedFrom: DateTimeFormatter, ...seconds: Array<number> | Array<Array<number>>): number;
/**
* Returns the index of minute in which date is included
* @param startedFrom
* @param minutes
*/
getIndexOfMinutePeriodOnWhichDateIsIncluded(startedFrom: DateTimeFormatter, ...minutes: Array<number> | Array<Array<number>>): number;
/**
* Returns the index of hour in which date is included
* @param startedFrom
* @param hours
*/
getIndexOfHourPeriodOnWhichDateIsIncluded(startedFrom: DateTimeFormatter, ...hours: Array<number> | Array<Array<number>>): number;
/**
* Returns the index of day in which date is included
* @param startedFrom
* @param days
*/
getIndexOfDayPeriodOnWhichDateIsIncluded(startedFrom: DateTimeFormatter, ...days: Array<number> | Array<Array<number>>): number;
/**
* Returns the index of month in which date is included
* @param startedFrom
* @param months
*/
getIndexOfMonthPeriodOnWhichDateIsIncluded(startedFrom: DateTimeFormatter, ...months: Array<number> | Array<Array<number>>): number;
/**
* Returns the index of year in which date is included
* @param startedFrom
* @param years
*/
getIndexOfYearPeriodOnWhichDateIsIncluded(startedFrom: DateTimeFormatter, ...years: Array<number> | Array<Array<number>>): number;
/**
* Returns the index of decade in which date is included
* @param startedFrom
* @param decades
*/
getIndexOfDecadePeriodOnWhichDateIsIncluded(startedFrom: DateTimeFormatter, ...decades: Array<number> | Array<Array<number>>): number;
/**
* Returns the index of century in which date is included
* @param startedFrom
* @param centuries
*/
getIndexOfCenturyPeriodOnWhichDateIsIncluded(startedFrom: DateTimeFormatter, ...centuries: Array<number> | Array<Array<number>>): number;
/**
* Returns the Unix-timestamp with a precision
* @param precision
* @example getPreciseTimestamp() 1589833741123456
* @example getPreciseTimestamp(6) 1589833741123456
* @example getPreciseTimestamp(5) 158983374112345
* @example getPreciseTimestamp(4) 158983374112345
* @example getPreciseTimestamp(3) 15898337411234
* @example getPreciseTimestamp(2) 1589833741123
* @example getPreciseTimestamp(1) 158983374112
* @example getPreciseTimestamp(0) 15898337411
*/
getPreciseTimestamp(precision?: number): number;
/**
* Returns `true` if the current date is greater than the transmitted date
* @param date
*/
greaterThan(date: DateTimeFormatter): boolean;
/**
* Returns `true` if the current date is greater than or equal to the transmitted date
* @param date
*/
greaterThanOrEqualTo(date: DateTimeFormatter): boolean;
/**
* Returns `true` if the current date is less than the transmitted date
* @param date
*/
lessThan(date: DateTimeFormatter): boolean;
/**
* Returns `true` if the current date is less than or equal to the transmitted date
* @param date
*/
lessThanOrEqualTo(date: DateTimeFormatter): boolean;
/**
* Parses the date from the transmitted Date object
* @param date
*/
private parseFromDate;
/**
* Parses the date from the transmitted Date object without offset
* @param date
*/
private parseFromUTCDate;
/**
* Parses the date from the transmitted timestamp
* @param timestamp
*/
private parseFromTimestamp;
/**
* Adds the custom values to the current date
* @param years
* @param months
* @param days
* @param hours
* @param minutes
* @param seconds
*/
private add;
/**
* Sets the custom values to the current date
* @param year
* @param month
* @param day
* @param hours
* @param minutes
* @param seconds
* @param microseconds
*/
private set;
}
export type Translation = Object & {
monthNames: string[];
shortMonthNames?: string[];
dayNames: string[];
shortDayNames?: string[];
};
}