@keymanapp/kmc-ldml 18.0.41-alpha → 18.0.45-alpha
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/src/compiler/compiler.d.ts +123 -123
- package/build/src/compiler/compiler.js +307 -310
- package/build/src/compiler/compiler.js.map +1 -1
- package/build/src/compiler/disp.d.ts +11 -11
- package/build/src/compiler/disp.js +82 -85
- package/build/src/compiler/disp.js.map +1 -1
- package/build/src/compiler/empty-compiler.d.ts +37 -37
- package/build/src/compiler/empty-compiler.js +114 -117
- package/build/src/compiler/empty-compiler.js.map +1 -1
- package/build/src/compiler/keymanweb-compiler.d.ts +13 -13
- package/build/src/compiler/keymanweb-compiler.js +95 -98
- package/build/src/compiler/keymanweb-compiler.js.map +1 -1
- package/build/src/compiler/keys.d.ts +53 -53
- package/build/src/compiler/keys.js +417 -420
- package/build/src/compiler/keys.js.map +1 -1
- package/build/src/compiler/layr.d.ts +9 -9
- package/build/src/compiler/layr.js +81 -84
- package/build/src/compiler/layr.js.map +1 -1
- package/build/src/compiler/ldml-compiler-options.d.ts +11 -11
- package/build/src/compiler/ldml-compiler-options.js +3 -6
- package/build/src/compiler/ldml-compiler-options.js.map +1 -1
- package/build/src/compiler/loca.d.ts +15 -15
- package/build/src/compiler/loca.js +59 -62
- package/build/src/compiler/loca.js.map +1 -1
- package/build/src/compiler/messages.d.ts +186 -186
- package/build/src/compiler/messages.js +122 -125
- package/build/src/compiler/messages.js.map +1 -1
- package/build/src/compiler/meta.d.ts +13 -13
- package/build/src/compiler/meta.js +55 -58
- package/build/src/compiler/meta.js.map +1 -1
- package/build/src/compiler/metadata-compiler.d.ts +12 -12
- package/build/src/compiler/metadata-compiler.js +47 -50
- package/build/src/compiler/metadata-compiler.js.map +1 -1
- package/build/src/compiler/section-compiler.d.ts +35 -35
- package/build/src/compiler/section-compiler.js +40 -43
- package/build/src/compiler/section-compiler.js.map +1 -1
- package/build/src/compiler/substitution-tracker.d.ts +47 -47
- package/build/src/compiler/substitution-tracker.js +103 -106
- package/build/src/compiler/substitution-tracker.js.map +1 -1
- package/build/src/compiler/touch-layout-compiler.d.ts +7 -7
- package/build/src/compiler/touch-layout-compiler.js +91 -94
- package/build/src/compiler/touch-layout-compiler.js.map +1 -1
- package/build/src/compiler/tran.d.ts +57 -57
- package/build/src/compiler/tran.js +388 -391
- package/build/src/compiler/tran.js.map +1 -1
- package/build/src/compiler/vars.d.ts +21 -21
- package/build/src/compiler/vars.js +234 -237
- package/build/src/compiler/vars.js.map +1 -1
- package/build/src/compiler/visual-keyboard-compiler.d.ts +8 -8
- package/build/src/compiler/visual-keyboard-compiler.js +68 -71
- package/build/src/compiler/visual-keyboard-compiler.js.map +1 -1
- package/build/src/main.d.ts +3 -3
- package/build/src/main.js +3 -6
- package/build/src/main.js.map +1 -1
- package/build/src/util/util.d.ts +49 -49
- package/build/src/util/util.js +183 -186
- package/build/src/util/util.js.map +1 -1
- package/package.json +6 -6
|
@@ -1,187 +1,187 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* @internal
|
|
3
|
-
*/
|
|
4
|
-
export declare class CompilerMessages {
|
|
5
|
-
static HINT_NormalizationDisabled: number;
|
|
6
|
-
static Hint_NormalizationDisabled: () => import("@keymanapp/common-types").CompilerEvent;
|
|
7
|
-
static ERROR_InvalidLocale: number;
|
|
8
|
-
static Error_InvalidLocale: (o: {
|
|
9
|
-
tag: string;
|
|
10
|
-
}) => import("@keymanapp/common-types").CompilerEvent;
|
|
11
|
-
static ERROR_HardwareLayerHasTooManyRows: number;
|
|
12
|
-
static Error_HardwareLayerHasTooManyRows: () => import("@keymanapp/common-types").CompilerEvent;
|
|
13
|
-
static ERROR_RowOnHardwareLayerHasTooManyKeys: number;
|
|
14
|
-
static Error_RowOnHardwareLayerHasTooManyKeys: (o: {
|
|
15
|
-
row: number;
|
|
16
|
-
hardware: string;
|
|
17
|
-
modifiers: string;
|
|
18
|
-
}) => import("@keymanapp/common-types").CompilerEvent;
|
|
19
|
-
static ERROR_KeyNotFoundInKeyBag: number;
|
|
20
|
-
static Error_KeyNotFoundInKeyBag: (o: {
|
|
21
|
-
keyId: string;
|
|
22
|
-
col: number;
|
|
23
|
-
row: number;
|
|
24
|
-
layer: string;
|
|
25
|
-
form: string;
|
|
26
|
-
}) => import("@keymanapp/common-types").CompilerEvent;
|
|
27
|
-
static HINT_OneOrMoreRepeatedLocales: number;
|
|
28
|
-
static Hint_OneOrMoreRepeatedLocales: () => import("@keymanapp/common-types").CompilerEvent;
|
|
29
|
-
static ERROR_InvalidFile: number;
|
|
30
|
-
static Error_InvalidFile: (o: {
|
|
31
|
-
errorText: string;
|
|
32
|
-
}) => import("@keymanapp/common-types").CompilerEvent;
|
|
33
|
-
static HINT_LocaleIsNotMinimalAndClean: number;
|
|
34
|
-
static Hint_LocaleIsNotMinimalAndClean: (o: {
|
|
35
|
-
sourceLocale: string;
|
|
36
|
-
locale: string;
|
|
37
|
-
}) => import("@keymanapp/common-types").CompilerEvent;
|
|
38
|
-
static ERROR_InvalidScanCode: number;
|
|
39
|
-
static Error_InvalidScanCode: (o: {
|
|
40
|
-
form?: string;
|
|
41
|
-
codes?: string[];
|
|
42
|
-
}) => import("@keymanapp/common-types").CompilerEvent;
|
|
43
|
-
static WARN_CustomForm: number;
|
|
44
|
-
static Warn_CustomForm: (o: {
|
|
45
|
-
id: string;
|
|
46
|
-
}) => import("@keymanapp/common-types").CompilerEvent;
|
|
47
|
-
static ERROR_GestureKeyNotFoundInKeyBag: number;
|
|
48
|
-
static Error_GestureKeyNotFoundInKeyBag: (o: {
|
|
49
|
-
keyId: string;
|
|
50
|
-
parentKeyId: string;
|
|
51
|
-
attribute: string;
|
|
52
|
-
}) => import("@keymanapp/common-types").CompilerEvent;
|
|
53
|
-
static ERROR_InvalidVersion: number;
|
|
54
|
-
static Error_InvalidVersion: (o: {
|
|
55
|
-
version: string;
|
|
56
|
-
}) => import("@keymanapp/common-types").CompilerEvent;
|
|
57
|
-
static ERROR_MustBeAtLeastOneLayerElement: number;
|
|
58
|
-
static Error_MustBeAtLeastOneLayerElement: () => import("@keymanapp/common-types").CompilerEvent;
|
|
59
|
-
/** annotate the to= or id= entry */
|
|
60
|
-
private static outputOrKeyId;
|
|
61
|
-
static ERROR_DisplayIsRepeated: number;
|
|
62
|
-
static Error_DisplayIsRepeated: (o: {
|
|
63
|
-
output?: string;
|
|
64
|
-
keyId?: string;
|
|
65
|
-
}) => import("@keymanapp/common-types").CompilerEvent;
|
|
66
|
-
static ERROR_KeyMissingToGapOrSwitch: number;
|
|
67
|
-
static Error_KeyMissingToGapOrSwitch: (o: {
|
|
68
|
-
keyId: string;
|
|
69
|
-
}) => import("@keymanapp/common-types").CompilerEvent;
|
|
70
|
-
static ERROR_ExcessHardware: number;
|
|
71
|
-
static Error_ExcessHardware: (o: {
|
|
72
|
-
formId: string;
|
|
73
|
-
}) => import("@keymanapp/common-types").CompilerEvent;
|
|
74
|
-
static ERROR_InvalidHardware: number;
|
|
75
|
-
static Error_InvalidHardware: (o: {
|
|
76
|
-
formId: string;
|
|
77
|
-
}) => import("@keymanapp/common-types").CompilerEvent;
|
|
78
|
-
static ERROR_InvalidModifier: number;
|
|
79
|
-
static Error_InvalidModifier: (o: {
|
|
80
|
-
layer: string;
|
|
81
|
-
modifiers: string;
|
|
82
|
-
}) => import("@keymanapp/common-types").CompilerEvent;
|
|
83
|
-
static ERROR_MissingFlicks: number;
|
|
84
|
-
static Error_MissingFlicks: (o: {
|
|
85
|
-
flickId: string;
|
|
86
|
-
id: string;
|
|
87
|
-
}) => import("@keymanapp/common-types").CompilerEvent;
|
|
88
|
-
static ERROR_DuplicateVariable: number;
|
|
89
|
-
static Error_DuplicateVariable: (o: {
|
|
90
|
-
ids: string;
|
|
91
|
-
}) => import("@keymanapp/common-types").CompilerEvent;
|
|
92
|
-
static ERROR_InvalidTransformsType: number;
|
|
93
|
-
static Error_InvalidTransformsType: (o: {
|
|
94
|
-
types: string[];
|
|
95
|
-
}) => import("@keymanapp/common-types").CompilerEvent;
|
|
96
|
-
static ERROR_DuplicateTransformsType: number;
|
|
97
|
-
static Error_DuplicateTransformsType: (o: {
|
|
98
|
-
types: string[];
|
|
99
|
-
}) => import("@keymanapp/common-types").CompilerEvent;
|
|
100
|
-
static ERROR_MixedTransformGroup: number;
|
|
101
|
-
static Error_MixedTransformGroup: () => import("@keymanapp/common-types").CompilerEvent;
|
|
102
|
-
static ERROR_EmptyTransformGroup: number;
|
|
103
|
-
static Error_EmptyTransformGroup: () => import("@keymanapp/common-types").CompilerEvent;
|
|
104
|
-
static ERROR_MissingStringVariable: number;
|
|
105
|
-
static Error_MissingStringVariable: (o: {
|
|
106
|
-
id: string;
|
|
107
|
-
}) => import("@keymanapp/common-types").CompilerEvent;
|
|
108
|
-
static ERROR_MissingSetVariable: number;
|
|
109
|
-
static Error_MissingSetVariable: (o: {
|
|
110
|
-
id: string;
|
|
111
|
-
}) => import("@keymanapp/common-types").CompilerEvent;
|
|
112
|
-
static ERROR_MissingUnicodeSetVariable: number;
|
|
113
|
-
static Error_MissingUnicodeSetVariable: (o: {
|
|
114
|
-
id: string;
|
|
115
|
-
}) => import("@keymanapp/common-types").CompilerEvent;
|
|
116
|
-
static ERROR_NeedSpacesBetweenSetVariables: number;
|
|
117
|
-
static Error_NeedSpacesBetweenSetVariables: (o: {
|
|
118
|
-
item: string;
|
|
119
|
-
}) => import("@keymanapp/common-types").CompilerEvent;
|
|
120
|
-
static ERROR_CantReferenceSetFromUnicodeSet: number;
|
|
121
|
-
static Error_CantReferenceSetFromUnicodeSet: (o: {
|
|
122
|
-
id: string;
|
|
123
|
-
}) => import("@keymanapp/common-types").CompilerEvent;
|
|
124
|
-
static ERROR_MissingMarkers: number;
|
|
125
|
-
static Error_MissingMarkers: (o: {
|
|
126
|
-
ids: string[];
|
|
127
|
-
}) => import("@keymanapp/common-types").CompilerEvent;
|
|
128
|
-
static ERROR_DisplayNeedsToOrId: number;
|
|
129
|
-
static Error_DisplayNeedsToOrId: (o: {
|
|
130
|
-
output?: string;
|
|
131
|
-
keyId?: string;
|
|
132
|
-
}) => import("@keymanapp/common-types").CompilerEvent;
|
|
133
|
-
static HINT_PUACharacters: number;
|
|
134
|
-
static Hint_PUACharacters: (o: {
|
|
135
|
-
count: number;
|
|
136
|
-
lowestCh: number;
|
|
137
|
-
}) => import("@keymanapp/common-types").CompilerEvent;
|
|
138
|
-
static WARN_UnassignedCharacters: number;
|
|
139
|
-
static Warn_UnassignedCharacters: (o: {
|
|
140
|
-
count: number;
|
|
141
|
-
lowestCh: number;
|
|
142
|
-
}) => import("@keymanapp/common-types").CompilerEvent;
|
|
143
|
-
static ERROR_IllegalCharacters: number;
|
|
144
|
-
static Error_IllegalCharacters: (o: {
|
|
145
|
-
count: number;
|
|
146
|
-
lowestCh: number;
|
|
147
|
-
}) => import("@keymanapp/common-types").CompilerEvent;
|
|
148
|
-
static HINT_CharClassImplicitDenorm: number;
|
|
149
|
-
static Hint_CharClassImplicitDenorm: (o: {
|
|
150
|
-
lowestCh: number;
|
|
151
|
-
}) => import("@keymanapp/common-types").CompilerEvent;
|
|
152
|
-
static WARN_CharClassExplicitDenorm: number;
|
|
153
|
-
static Warn_CharClassExplicitDenorm: (o: {
|
|
154
|
-
lowestCh: number;
|
|
155
|
-
}) => import("@keymanapp/common-types").CompilerEvent;
|
|
156
|
-
static ERROR_UnparseableReorderSet: number;
|
|
157
|
-
static Error_UnparseableReorderSet: (o: {
|
|
158
|
-
from: string;
|
|
159
|
-
set: string;
|
|
160
|
-
}) => import("@keymanapp/common-types").CompilerEvent;
|
|
161
|
-
static ERROR_InvalidQuadEscape: number;
|
|
162
|
-
static Error_InvalidQuadEscape: (o: {
|
|
163
|
-
cp: number;
|
|
164
|
-
}) => import("@keymanapp/common-types").CompilerEvent;
|
|
165
|
-
static ERROR_UnparseableTransformFrom: number;
|
|
166
|
-
static Error_UnparseableTransformFrom: (o: {
|
|
167
|
-
from: string;
|
|
168
|
-
message: string;
|
|
169
|
-
}) => import("@keymanapp/common-types").CompilerEvent;
|
|
170
|
-
static ERROR_IllegalTransformDollarsign: number;
|
|
171
|
-
static Error_IllegalTransformDollarsign: (o: {
|
|
172
|
-
from: string;
|
|
173
|
-
}) => import("@keymanapp/common-types").CompilerEvent;
|
|
174
|
-
static ERROR_TransformFromMatchesNothing: number;
|
|
175
|
-
static Error_TransformFromMatchesNothing: (o: {
|
|
176
|
-
from: string;
|
|
177
|
-
}) => import("@keymanapp/common-types").CompilerEvent;
|
|
178
|
-
static ERROR_IllegalTransformPlus: number;
|
|
179
|
-
static Error_IllegalTransformPlus: (o: {
|
|
180
|
-
from: string;
|
|
181
|
-
}) => import("@keymanapp/common-types").CompilerEvent;
|
|
182
|
-
static ERROR_IllegalTransformAsterisk: number;
|
|
183
|
-
static Error_IllegalTransformAsterisk: (o: {
|
|
184
|
-
from: string;
|
|
185
|
-
}) => import("@keymanapp/common-types").CompilerEvent;
|
|
186
|
-
}
|
|
1
|
+
/**
|
|
2
|
+
* @internal
|
|
3
|
+
*/
|
|
4
|
+
export declare class CompilerMessages {
|
|
5
|
+
static HINT_NormalizationDisabled: number;
|
|
6
|
+
static Hint_NormalizationDisabled: () => import("@keymanapp/common-types").CompilerEvent;
|
|
7
|
+
static ERROR_InvalidLocale: number;
|
|
8
|
+
static Error_InvalidLocale: (o: {
|
|
9
|
+
tag: string;
|
|
10
|
+
}) => import("@keymanapp/common-types").CompilerEvent;
|
|
11
|
+
static ERROR_HardwareLayerHasTooManyRows: number;
|
|
12
|
+
static Error_HardwareLayerHasTooManyRows: () => import("@keymanapp/common-types").CompilerEvent;
|
|
13
|
+
static ERROR_RowOnHardwareLayerHasTooManyKeys: number;
|
|
14
|
+
static Error_RowOnHardwareLayerHasTooManyKeys: (o: {
|
|
15
|
+
row: number;
|
|
16
|
+
hardware: string;
|
|
17
|
+
modifiers: string;
|
|
18
|
+
}) => import("@keymanapp/common-types").CompilerEvent;
|
|
19
|
+
static ERROR_KeyNotFoundInKeyBag: number;
|
|
20
|
+
static Error_KeyNotFoundInKeyBag: (o: {
|
|
21
|
+
keyId: string;
|
|
22
|
+
col: number;
|
|
23
|
+
row: number;
|
|
24
|
+
layer: string;
|
|
25
|
+
form: string;
|
|
26
|
+
}) => import("@keymanapp/common-types").CompilerEvent;
|
|
27
|
+
static HINT_OneOrMoreRepeatedLocales: number;
|
|
28
|
+
static Hint_OneOrMoreRepeatedLocales: () => import("@keymanapp/common-types").CompilerEvent;
|
|
29
|
+
static ERROR_InvalidFile: number;
|
|
30
|
+
static Error_InvalidFile: (o: {
|
|
31
|
+
errorText: string;
|
|
32
|
+
}) => import("@keymanapp/common-types").CompilerEvent;
|
|
33
|
+
static HINT_LocaleIsNotMinimalAndClean: number;
|
|
34
|
+
static Hint_LocaleIsNotMinimalAndClean: (o: {
|
|
35
|
+
sourceLocale: string;
|
|
36
|
+
locale: string;
|
|
37
|
+
}) => import("@keymanapp/common-types").CompilerEvent;
|
|
38
|
+
static ERROR_InvalidScanCode: number;
|
|
39
|
+
static Error_InvalidScanCode: (o: {
|
|
40
|
+
form?: string;
|
|
41
|
+
codes?: string[];
|
|
42
|
+
}) => import("@keymanapp/common-types").CompilerEvent;
|
|
43
|
+
static WARN_CustomForm: number;
|
|
44
|
+
static Warn_CustomForm: (o: {
|
|
45
|
+
id: string;
|
|
46
|
+
}) => import("@keymanapp/common-types").CompilerEvent;
|
|
47
|
+
static ERROR_GestureKeyNotFoundInKeyBag: number;
|
|
48
|
+
static Error_GestureKeyNotFoundInKeyBag: (o: {
|
|
49
|
+
keyId: string;
|
|
50
|
+
parentKeyId: string;
|
|
51
|
+
attribute: string;
|
|
52
|
+
}) => import("@keymanapp/common-types").CompilerEvent;
|
|
53
|
+
static ERROR_InvalidVersion: number;
|
|
54
|
+
static Error_InvalidVersion: (o: {
|
|
55
|
+
version: string;
|
|
56
|
+
}) => import("@keymanapp/common-types").CompilerEvent;
|
|
57
|
+
static ERROR_MustBeAtLeastOneLayerElement: number;
|
|
58
|
+
static Error_MustBeAtLeastOneLayerElement: () => import("@keymanapp/common-types").CompilerEvent;
|
|
59
|
+
/** annotate the to= or id= entry */
|
|
60
|
+
private static outputOrKeyId;
|
|
61
|
+
static ERROR_DisplayIsRepeated: number;
|
|
62
|
+
static Error_DisplayIsRepeated: (o: {
|
|
63
|
+
output?: string;
|
|
64
|
+
keyId?: string;
|
|
65
|
+
}) => import("@keymanapp/common-types").CompilerEvent;
|
|
66
|
+
static ERROR_KeyMissingToGapOrSwitch: number;
|
|
67
|
+
static Error_KeyMissingToGapOrSwitch: (o: {
|
|
68
|
+
keyId: string;
|
|
69
|
+
}) => import("@keymanapp/common-types").CompilerEvent;
|
|
70
|
+
static ERROR_ExcessHardware: number;
|
|
71
|
+
static Error_ExcessHardware: (o: {
|
|
72
|
+
formId: string;
|
|
73
|
+
}) => import("@keymanapp/common-types").CompilerEvent;
|
|
74
|
+
static ERROR_InvalidHardware: number;
|
|
75
|
+
static Error_InvalidHardware: (o: {
|
|
76
|
+
formId: string;
|
|
77
|
+
}) => import("@keymanapp/common-types").CompilerEvent;
|
|
78
|
+
static ERROR_InvalidModifier: number;
|
|
79
|
+
static Error_InvalidModifier: (o: {
|
|
80
|
+
layer: string;
|
|
81
|
+
modifiers: string;
|
|
82
|
+
}) => import("@keymanapp/common-types").CompilerEvent;
|
|
83
|
+
static ERROR_MissingFlicks: number;
|
|
84
|
+
static Error_MissingFlicks: (o: {
|
|
85
|
+
flickId: string;
|
|
86
|
+
id: string;
|
|
87
|
+
}) => import("@keymanapp/common-types").CompilerEvent;
|
|
88
|
+
static ERROR_DuplicateVariable: number;
|
|
89
|
+
static Error_DuplicateVariable: (o: {
|
|
90
|
+
ids: string;
|
|
91
|
+
}) => import("@keymanapp/common-types").CompilerEvent;
|
|
92
|
+
static ERROR_InvalidTransformsType: number;
|
|
93
|
+
static Error_InvalidTransformsType: (o: {
|
|
94
|
+
types: string[];
|
|
95
|
+
}) => import("@keymanapp/common-types").CompilerEvent;
|
|
96
|
+
static ERROR_DuplicateTransformsType: number;
|
|
97
|
+
static Error_DuplicateTransformsType: (o: {
|
|
98
|
+
types: string[];
|
|
99
|
+
}) => import("@keymanapp/common-types").CompilerEvent;
|
|
100
|
+
static ERROR_MixedTransformGroup: number;
|
|
101
|
+
static Error_MixedTransformGroup: () => import("@keymanapp/common-types").CompilerEvent;
|
|
102
|
+
static ERROR_EmptyTransformGroup: number;
|
|
103
|
+
static Error_EmptyTransformGroup: () => import("@keymanapp/common-types").CompilerEvent;
|
|
104
|
+
static ERROR_MissingStringVariable: number;
|
|
105
|
+
static Error_MissingStringVariable: (o: {
|
|
106
|
+
id: string;
|
|
107
|
+
}) => import("@keymanapp/common-types").CompilerEvent;
|
|
108
|
+
static ERROR_MissingSetVariable: number;
|
|
109
|
+
static Error_MissingSetVariable: (o: {
|
|
110
|
+
id: string;
|
|
111
|
+
}) => import("@keymanapp/common-types").CompilerEvent;
|
|
112
|
+
static ERROR_MissingUnicodeSetVariable: number;
|
|
113
|
+
static Error_MissingUnicodeSetVariable: (o: {
|
|
114
|
+
id: string;
|
|
115
|
+
}) => import("@keymanapp/common-types").CompilerEvent;
|
|
116
|
+
static ERROR_NeedSpacesBetweenSetVariables: number;
|
|
117
|
+
static Error_NeedSpacesBetweenSetVariables: (o: {
|
|
118
|
+
item: string;
|
|
119
|
+
}) => import("@keymanapp/common-types").CompilerEvent;
|
|
120
|
+
static ERROR_CantReferenceSetFromUnicodeSet: number;
|
|
121
|
+
static Error_CantReferenceSetFromUnicodeSet: (o: {
|
|
122
|
+
id: string;
|
|
123
|
+
}) => import("@keymanapp/common-types").CompilerEvent;
|
|
124
|
+
static ERROR_MissingMarkers: number;
|
|
125
|
+
static Error_MissingMarkers: (o: {
|
|
126
|
+
ids: string[];
|
|
127
|
+
}) => import("@keymanapp/common-types").CompilerEvent;
|
|
128
|
+
static ERROR_DisplayNeedsToOrId: number;
|
|
129
|
+
static Error_DisplayNeedsToOrId: (o: {
|
|
130
|
+
output?: string;
|
|
131
|
+
keyId?: string;
|
|
132
|
+
}) => import("@keymanapp/common-types").CompilerEvent;
|
|
133
|
+
static HINT_PUACharacters: number;
|
|
134
|
+
static Hint_PUACharacters: (o: {
|
|
135
|
+
count: number;
|
|
136
|
+
lowestCh: number;
|
|
137
|
+
}) => import("@keymanapp/common-types").CompilerEvent;
|
|
138
|
+
static WARN_UnassignedCharacters: number;
|
|
139
|
+
static Warn_UnassignedCharacters: (o: {
|
|
140
|
+
count: number;
|
|
141
|
+
lowestCh: number;
|
|
142
|
+
}) => import("@keymanapp/common-types").CompilerEvent;
|
|
143
|
+
static ERROR_IllegalCharacters: number;
|
|
144
|
+
static Error_IllegalCharacters: (o: {
|
|
145
|
+
count: number;
|
|
146
|
+
lowestCh: number;
|
|
147
|
+
}) => import("@keymanapp/common-types").CompilerEvent;
|
|
148
|
+
static HINT_CharClassImplicitDenorm: number;
|
|
149
|
+
static Hint_CharClassImplicitDenorm: (o: {
|
|
150
|
+
lowestCh: number;
|
|
151
|
+
}) => import("@keymanapp/common-types").CompilerEvent;
|
|
152
|
+
static WARN_CharClassExplicitDenorm: number;
|
|
153
|
+
static Warn_CharClassExplicitDenorm: (o: {
|
|
154
|
+
lowestCh: number;
|
|
155
|
+
}) => import("@keymanapp/common-types").CompilerEvent;
|
|
156
|
+
static ERROR_UnparseableReorderSet: number;
|
|
157
|
+
static Error_UnparseableReorderSet: (o: {
|
|
158
|
+
from: string;
|
|
159
|
+
set: string;
|
|
160
|
+
}) => import("@keymanapp/common-types").CompilerEvent;
|
|
161
|
+
static ERROR_InvalidQuadEscape: number;
|
|
162
|
+
static Error_InvalidQuadEscape: (o: {
|
|
163
|
+
cp: number;
|
|
164
|
+
}) => import("@keymanapp/common-types").CompilerEvent;
|
|
165
|
+
static ERROR_UnparseableTransformFrom: number;
|
|
166
|
+
static Error_UnparseableTransformFrom: (o: {
|
|
167
|
+
from: string;
|
|
168
|
+
message: string;
|
|
169
|
+
}) => import("@keymanapp/common-types").CompilerEvent;
|
|
170
|
+
static ERROR_IllegalTransformDollarsign: number;
|
|
171
|
+
static Error_IllegalTransformDollarsign: (o: {
|
|
172
|
+
from: string;
|
|
173
|
+
}) => import("@keymanapp/common-types").CompilerEvent;
|
|
174
|
+
static ERROR_TransformFromMatchesNothing: number;
|
|
175
|
+
static Error_TransformFromMatchesNothing: (o: {
|
|
176
|
+
from: string;
|
|
177
|
+
}) => import("@keymanapp/common-types").CompilerEvent;
|
|
178
|
+
static ERROR_IllegalTransformPlus: number;
|
|
179
|
+
static Error_IllegalTransformPlus: (o: {
|
|
180
|
+
from: string;
|
|
181
|
+
}) => import("@keymanapp/common-types").CompilerEvent;
|
|
182
|
+
static ERROR_IllegalTransformAsterisk: number;
|
|
183
|
+
static Error_IllegalTransformAsterisk: (o: {
|
|
184
|
+
from: string;
|
|
185
|
+
}) => import("@keymanapp/common-types").CompilerEvent;
|
|
186
|
+
}
|
|
187
187
|
//# sourceMappingURL=messages.d.ts.map
|