forked from DefinitelyTyped/DefinitelyTyped
-
Notifications
You must be signed in to change notification settings - Fork 0
/
twix.d.ts
138 lines (114 loc) · 4.45 KB
/
twix.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
// Type definitions for twix.js 0.6.3
// Project: https://github.com/icambron/twix.js
// Definitions by: j3ko <https://github.com/j3ko>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
/// <reference path="../moment/moment.d.ts" />
declare namespace moment {
interface Moment {
twix(date: Date): Twix;
twix(date: Date, allDay: boolean): Twix;
twix(date: Date, options: TwixParseAndFormatOptions): Twix;
twix(date: Date, format: string, options: TwixParseAndFormatOptions): Twix;
twix(date: Moment): Twix;
twix(date: Moment, allDay: boolean): Twix;
twix(date: Moment, options: TwixParseAndFormatOptions): Twix;
twix(date: Moment, format: string, options: TwixParseAndFormatOptions): Twix;
twix(date: MomentInput): Twix;
twix(date: MomentInput, allDay: boolean): Twix;
twix(date: MomentInput, options: TwixParseAndFormatOptions): Twix;
twix(date: MomentInput, format: string, options: TwixParseAndFormatOptions): Twix;
twix(date: number): Twix;
twix(date: number, allDay: boolean): Twix;
twix(date: number, options: TwixParseAndFormatOptions): Twix;
twix(date: number, format: string, options: TwixParseAndFormatOptions): Twix;
twix(date: number[]): Twix;
twix(date: number[], allDay: boolean): Twix;
twix(date: number[], options: TwixParseAndFormatOptions): Twix;
twix(date: number[], format: string, options: TwixParseAndFormatOptions): Twix;
twix(date: string): Twix;
twix(date: string, allDay: boolean): Twix;
twix(date: string, options: TwixParseAndFormatOptions): Twix;
twix(date: string, format: string, options: TwixParseAndFormatOptions): Twix;
}
interface MomentStatic {
twix(start: Moment, end: Moment): Twix;
twixClass: TwixStatic;
}
interface TwixFormatOptions {
groupMeridiems?: boolean;
spaceBeforeMeridiem?: boolean;
showDate?: boolean;
showDayOfWeek?: boolean;
twentyFourHour?: boolean;
implicitMinutes?: boolean;
implicitYear?: boolean;
yearFormat?: string;
monthFormat?: string;
weekdayFormat?: string;
dayFormat?: string;
meridiemFormat?: string;
hourFormat?: string;
minuteFormat?: string;
allDay?: any; // boolean | string
explicitAllDay?: boolean;
lastNightEndsAt?: number;
}
interface TwixParseAndFormatOptions extends TwixFormatOptions {
parseStrict?: boolean;
}
interface TwixSimpleFormatOptions {
allDay?: string;
template?: (left: any, right: any) => any;
}
interface TwixIter {
hasNext(): boolean;
next(): Twix;
}
interface Duration {
afterMoment(date: string): string;
beforeMoment(date: string): string;
}
interface Twix {
isPast(): boolean;
isFuture(): boolean;
isCurrent(): boolean;
isSame(period: string): boolean;
contains(date: string): boolean;
contains(date: Date): boolean;
contains(date: Moment): boolean;
length(period: string): number;
count(period: string): number;
countInner(period: string): number;
iterate(period: string): TwixIter;
iterate(num: number, period: string): TwixIter;
iterate(duration: Duration): TwixIter;
iterateInner(period: string): TwixIter;
iterateInner(num: number, period: string): TwixIter;
overlaps(other: Twix): boolean;
engulfs(other: Twix): boolean;
equals(other: Twix): boolean;
union(other: Twix): Twix;
intersection(other: Twix): Twix;
xor(other: Twix): Twix[];
difference(other: Twix): Twix[];
split(num: number, period: string): Twix[];
split(other: Moment): Twix[];
split(start: Moment, end: Moment): Twix[];
split(duration: Duration): Twix[];
humanizeLength(): string;
simpleFormat(): string;
simpleFormat(format: string): string;
simpleFormat(format: string, options: TwixSimpleFormatOptions): string;
format(): string;
format(options: TwixFormatOptions): string;
asDuration(period: string): Duration;
isValid(): boolean;
}
interface TwixStatic {
formatTemplate?: (left: any, right: any) => any;
}
}
declare module 'twix' {
var _tmp: moment.MomentStatic;
export = _tmp;
}