-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathindex.d.ts
140 lines (117 loc) · 4.01 KB
/
index.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
export type DateInput = Date | number;
export type Locale = string;
// Users can add custom styles via `TimeAgo.addLabels(locale, styleName, labels)`.
export type CustomLabelStyleName = string;
// There're also "legacy" label styles like "time" or "long-time" that have been deprecated.
// Users can still use those by adding them manually via `TimeAgo.addLabels()`.
export type LabelStyleName = 'long' | 'short' | 'narrow' | 'mini' | 'now' | CustomLabelStyleName;
export type Rounding = 'round' | 'floor';
// https://github.com/eemeli/make-plural/blob/master/packages/compiler/src/compile-range.js#L1
export type Count = 'zero' | 'one' | 'two' | 'few' | 'many' | 'other';
export type CommonUnit = 'year' | 'month' | 'week' | 'day' | 'hour' | 'minute' | 'second';
export type Unit = CommonUnit | 'quarter' | 'now';
export type CountLabels = {
[count in Count]?: string;
}
export interface PastAndFutureLabels {
past: string | CountLabels;
future: string | CountLabels;
previous?: string;
current?: string;
next?: string;
}
export interface PastAndFutureNowLabels {
past: string;
future: string;
current: string;
}
export type UnitLabels = string | CountLabels | PastAndFutureLabels
export type Labels = {
year: UnitLabels;
quarter?: UnitLabels;
month: UnitLabels;
week: UnitLabels;
day: UnitLabels;
hour: UnitLabels;
minute: UnitLabels;
second: UnitLabels;
}
export type UnitLabelsMini = string | CountLabels;
export type MiniLabels = {
year: UnitLabelsMini;
quarter?: UnitLabelsMini;
month: UnitLabelsMini;
week: UnitLabelsMini;
day: UnitLabelsMini;
hour: UnitLabelsMini;
minute: UnitLabelsMini;
second: UnitLabelsMini;
}
export type NowLabels = {
now: string | PastAndFutureNowLabels;
}
export type LocaleData = {
locale: Locale;
short: Labels;
narrow: Labels;
long: Labels;
mini?: MiniLabels;
now?: NowLabels;
}
export type FormatStyleName =
'round' |
'round-minute' |
'mini' |
'mini-now' |
'mini-minute' |
'mini-minute-now' |
'twitter' |
'twitter-now' |
'twitter-minute' |
'twitter-minute-now' |
'twitter-first-minute';
export type MinTimeFunction = (date: number, options: {
future: boolean,
getMinTimeForUnit: (unit: Unit, prevUnit?: Unit) => number | void
}) => number;
export interface Step {
formatAs?: Unit;
minTime?: number | MinTimeFunction;
format?(date: DateInput, locale: Locale, options: {
formatAs: (unit: Unit, value: number) => string,
now: number,
future: boolean
}): string | void;
getTimeToNextUpdate?(date: DateInput, options: {
getTimeToNextUpdateForUnit: (unit: Unit) => number | void,
now: number,
future: boolean
}): number | void;
}
export interface Style {
steps: Step[];
labels: LabelStyleName | LabelStyleName[];
round?: Rounding;
}
interface FormatOptions {
now?: number;
future?: boolean;
getTimeToNextUpdate?: boolean;
round?: Rounding;
}
export default class TimeAgo {
constructor(locale: Locale | Locale[], options?: { polyfill?: boolean });
// When `getTimeToNextUpdate: true` option is passed to `.format()`,
// it returns an array containing the formatted time and the "time to next update" interval.
// https://gitlab.com/catamphetamine/javascript-time-ago#update-interval
// Perhaps it's not the best solution, and it would be better to introduce a new function called
// `.formatAndGetTimeToNextUpdate()`. But at this stage that would require a "major" version number update,
// and I wouldn't prefer doing that for such an insignificant change.
format(date: DateInput, style?: FormatStyleName | Style, options?: FormatOptions): FormatOptions['getTimeToNextUpdate'] extends true ? [string, number?] : string;
format<Options extends FormatOptions>(date: DateInput, options: Options): Options['getTimeToNextUpdate'] extends true ? [string, number?] : string;
getLabels(labelsType: LabelStyleName | LabelStyleName[]): Labels;
static addLocale(localeData: LocaleData): void;
static addDefaultLocale(localeData: LocaleData): void;
static setDefaultLocale(locale: Locale): void;
static addLabels(locale: Locale, name: LabelStyleName, labels: Labels): void;
}