This repository was archived by the owner on Jun 8, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathindex.d.ts
62 lines (61 loc) · 1.42 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
type Selector = string
interface LocationDetails {
offset: number
line: number
column: number
}
interface Location {
start: LocationDetails,
end: LocationDetails
}
interface SimpleFormat {
type: 'numberFormat' | 'dateFormat' | 'timeFormat'
style: string
location: Location
}
interface PluralFormat extends PluralStyle {
ordinal: false
}
interface SelectFormat {
type: 'selectFormat'
options: OptionalFormatPattern[],
location: Location
}
interface SelectOrdinalFormat extends PluralStyle {
ordinal: true,
}
type ElementFormat = SimpleFormat | PluralFormat | SelectOrdinalFormat | SelectFormat
interface OptionalFormatPattern {
type: 'optionalFormatPattern',
selector: Selector
value: MessageFormatPattern
location: Location
}
interface PluralStyle {
type: 'pluralFormat',
offset: number
options: OptionalFormatPattern[],
location: Location
}
interface MessageTextElement {
type: 'messageTextElement'
value: string
location: Location
}
interface ArgumentElement {
type: 'argumentElement'
id: string
format: ElementFormat
location: Location
}
type Element = MessageTextElement | ArgumentElement
export interface MessageFormatPattern {
type: 'messageFormatPattern',
elements: Array<Element>,
location: Location
}
interface Parser {
parse (msg: string): MessageFormatPattern
}
declare const parser: Parser
export default parser