-
Notifications
You must be signed in to change notification settings - Fork 663
Expand file tree
/
Copy pathbabel-utils.d.ts
More file actions
413 lines (377 loc) · 10.4 KB
/
Copy pathbabel-utils.d.ts
File metadata and controls
413 lines (377 loc) · 10.4 KB
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
import type { Config, types as t } from "@marko/compiler";
export interface AttributeDefinition {
allowExpressions: boolean;
filePath: string;
name: string;
type?: string;
html?: boolean;
enum?: string[];
pattern?: RegExp;
required: boolean;
defaultValue: unknown;
description?: string;
deprecated: boolean;
autocomplete: Array<{
displayText: string;
snippet: string;
description: string;
descriptionMoreURL?: string;
}>;
}
export interface PluginDefinition<T = any> {
path?: string;
hook: Plugin<T>;
}
export interface ParsePluginDefinition<T = any> {
path?: string;
hook: ParsePlugin<T>;
}
export interface TagDefinition {
dir: string;
filePath: string;
attributeGroups?: string[];
patternAttributes?: AttributeDefinition[];
attributes: { [x: string]: AttributeDefinition };
description?: string;
nestedTags?: {
[x: string]: TagDefinition & {
isNestedTag: true;
isRepeated: boolean;
targetProperty: string;
};
};
autocomplete?: Array<{
displayText: string;
snippet: string;
description: string;
descriptionMoreURL?: string;
}>;
htmlType?: "html" | "svg" | "math";
html: boolean;
name: string;
isNestedTag?: boolean;
isRepeated?: boolean;
targetProperty?: string;
taglibId: string;
types?: string;
template?: string;
renderer?: string;
deprecated: boolean;
openTagOnly: boolean;
analyzer?: PluginDefinition<t.MarkoTag>;
translator?: PluginDefinition<t.MarkoTag>;
parser?: ParsePluginDefinition<t.MarkoTag>;
transformers?: PluginDefinition<t.MarkoTag>[];
migrators?: PluginDefinition<t.MarkoTag>[];
parseOptions?: {
text?: boolean;
statement?: boolean;
controlFlow?: boolean;
openTagOnly?: boolean;
rawOpenTag?: boolean;
preserveWhitespace?: boolean;
};
}
export interface TaglibLookup {
getTagsSorted(): TagDefinition[];
getTag(tagName: string): undefined | TagDefinition;
getAttribute(
tagName: string,
attrName: string,
): undefined | AttributeDefinition;
forEachAttribute(
tagName: string,
callback: (attr: AttributeDefinition, tag: TagDefinition) => void,
): void;
exclusiveTagDiscoveryDirs: undefined | false | string;
manualTagsDirs: undefined | Set<string>;
}
export interface Attribute {
allowExpressions?: boolean;
type?: string;
html?: boolean;
enum?: string[];
pattern?: RegExp;
required?: boolean;
defaultValue?: unknown;
description?: string;
deprecated?: boolean;
autocomplete?: Array<{
displayText?: string;
snippet?: string;
description?: string;
descriptionMoreURL?: string;
}>;
}
export interface Tag {
attributeGroups?: string[];
patternAttributes?: Attribute[];
attributes?: { [x: string]: Attribute };
description?: string;
nestedTags?: {
[x: string]: Tag & {
isRepeated?: boolean;
targetProperty?: string;
};
};
autocomplete?: Array<{
displayText?: string;
snippet?: string;
description?: string;
descriptionMoreURL?: string;
}>;
htmlType?: "html" | "svg" | "math";
html?: boolean;
types?: string;
template?: string;
renderer?: string;
deprecated?: boolean;
openTagOnly?: boolean;
analyze?: Plugin<t.MarkoTag>;
translate?: Plugin<t.MarkoTag>;
parse?: ParsePlugin<t.MarkoTag>;
transform?: Plugin<t.MarkoTag> | Plugin<t.MarkoTag>[];
migrate?: Plugin<t.MarkoTag> | Plugin<t.MarkoTag>[];
parseOptions?: {
rootOnly?: boolean;
rawOpenTag?: boolean;
openTagOnly?: boolean;
controlFlow?: boolean;
ignoreAttributes?: boolean;
relaxRequireCommas?: boolean;
statement?: boolean;
preserveWhitespace?: boolean;
text?: boolean;
html?: boolean;
};
}
export function defineTag<T extends Tag>(tag: T): T;
export type FunctionPlugin<T = any> = (
path: t.NodePath<T>,
types: typeof t,
) => void;
export interface EnterExitPlugin<T = any> {
enter?(path: t.NodePath<T>, types: typeof t): void;
exit?(path: t.NodePath<T>, types: typeof t): void;
}
export interface ModulePlugin<T = any> {
default: EnterExitPlugin<T> | FunctionPlugin<T>;
}
export interface ModuleFunctionPlugin<T = any> {
default: FunctionPlugin<T>;
}
export type ParsePlugin<T = any> = ModuleFunctionPlugin<T> | FunctionPlugin<T>;
export type Plugin<T = any> =
| ModulePlugin<T>
| EnterExitPlugin<T>
| FunctionPlugin<T>;
export function assertAllowedAttributes(
path: t.NodePath<t.MarkoTag>,
allowed: string[],
): void;
export function assertNoArgs(path: t.NodePath<t.MarkoTag>): void;
export function assertNoVar(path: t.NodePath<t.MarkoTag>): void;
export function assertNoAttributes(path: t.NodePath<t.MarkoTag>): void;
export function assertNoParams(path: t.NodePath<t.MarkoTag>): void;
export function assertNoAttributeTags(path: t.NodePath<t.MarkoTag>): void;
export function assertAttributesOrArgs(path: t.NodePath<t.MarkoTag>): void;
export function assertAttributesOrSingleArg(path: t.NodePath<t.MarkoTag>): void;
export function isNativeTag(path: t.NodePath<t.MarkoTag>): boolean;
export function isMacroTag(path: t.NodePath<t.MarkoTag>): boolean;
export function isDynamicTag(path: t.NodePath<t.MarkoTag>): boolean;
export function isAttributeTag(
path: t.NodePath<t.MarkoTag>,
): path is t.NodePath<t.MarkoTag & { name: t.StringLiteral }>;
export function isTransparentTag(
path: t.NodePath<t.MarkoTag>,
): path is t.NodePath<t.MarkoTag & { name: t.StringLiteral }>;
export function isLoopTag(
path: t.NodePath<t.MarkoTag>,
): path is t.NodePath<t.MarkoTag & { name: t.StringLiteral }>;
export function registerMacro(path: t.NodePath<any>, name: string): void;
export function hasMacro(path: t.NodePath<any>, name: string): boolean;
export function getMacroIdentifierForName(
path: t.NodePath<any>,
name: string,
): t.Identifier;
export function getMacroIdentifier(path: t.NodePath<t.MarkoTag>): t.Identifier;
export function getTagTemplate(
path: t.NodePath<t.MarkoTag>,
): string | undefined;
export function getTagDef(
path: t.NodePath<t.MarkoTag>,
): TagDefinition | undefined;
export function getFullyResolvedTagName(path: t.NodePath<t.MarkoTag>): string;
export function findParentTag(
path: t.NodePath<t.MarkoTag>,
): t.NodePath<t.MarkoTag> | undefined;
export function findAttributeTags(
path: t.NodePath<t.MarkoTag>,
): Array<t.NodePath<t.MarkoTag>>;
export function getArgOrSequence(
path: t.NodePath<t.MarkoTag | t.MarkoAttribute>,
): t.Expression;
export function loadFileForTag(
path: t.NodePath<t.MarkoTag>,
): t.BabelFile | undefined;
export function loadFileForImport(
file: t.BabelFile,
template: string,
): t.BabelFile | undefined;
export function normalizeTemplateString(
quasis: Array<string | t.TemplateElement>,
...expressions: t.Expression[]
): t.TemplateLiteral;
type Loc = { line: number; column: number; index?: number };
type LocRange = { start: Loc; end: Loc };
export function getStart(file: t.BabelFile, node: t.Node): number | null;
export function getEnd(file: t.BabelFile, node: t.Node): number | null;
export function getLoc(file: t.BabelFile, pos: number): Loc;
export function getLocRange(
file: t.BabelFile,
start: number,
end: number,
): LocRange;
export function withLoc<T extends t.Node>(
file: t.BabelFile,
node: T,
start: number,
end: number,
): T;
export function parseStatements<T extends t.Statement[]>(
file: t.BabelFile,
str: string,
sourceStart?: null | number,
sourceEnd?: null | number,
sourceOffset?: null | number,
): T;
export function parseExpression<T extends t.Expression>(
file: t.BabelFile,
str: string,
sourceStart?: null | number,
sourceEnd?: null | number,
sourceOffset?: null | number,
): T;
export function parseParams(
file: t.BabelFile,
str: string,
sourceStart?: null | number,
sourceEnd?: null | number,
): t.Function["params"];
export function parseArgs(
file: t.BabelFile,
str: string,
sourceStart?: null | number,
sourceEnd?: null | number,
): t.CallExpression["arguments"];
export function parseVar(
file: t.BabelFile,
str: string,
sourceStart?: null | number,
sourceEnd?: null | number,
): t.VariableDeclarator["id"];
export function parseTemplateLiteral(
file: t.BabelFile,
str: string,
sourceStart?: null | number,
sourceEnd?: null | number,
): t.TemplateLiteral;
export function resolveRelativePath(file: t.BabelFile, request: string): string;
export function importDefault(
file: t.BabelFile,
request: string,
nameHint?: string,
): t.Identifier;
export function importStar(
file: t.BabelFile,
request: string,
nameHint?: string,
): t.Identifier;
export function importNamed(
file: t.BabelFile,
request: string,
name: string,
nameHint?: string,
): t.Identifier;
export function getTaglibLookup(file: t.BabelFile): TaglibLookup;
export function getTagDefForTagName(
file: t.BabelFile,
tagName: string,
): TagDefinition | undefined;
export function getTemplateId(
optimize: boolean | Config,
request: string,
child?: string,
): string;
export function resolveTagImport(
path: t.NodePath<any>,
request: string,
): string | undefined;
export enum DiagnosticType {
Error = "error",
Warning = "warning",
Deprecation = "deprecation",
Suggestion = "suggestion",
}
export interface Diagnostic {
type: DiagnosticType;
label: string;
loc: undefined | false | LocRange;
fix: boolean | ConfirmFix | SelectFix;
}
export interface DiagnosticOptions {
label: string;
loc?: undefined | false | LocRange;
fix?:
| undefined
| (() => void)
| (ConfirmFix & {
apply(confirmed: boolean | undefined): void;
})
| (SelectFix & {
apply(selected: string | undefined): void;
});
}
export function diagnosticError(
path: t.NodePath<any>,
options: DiagnosticOptions,
): void;
export function diagnosticWarn(
path: t.NodePath<any>,
options: DiagnosticOptions,
): void;
export function diagnosticDeprecate(
path: t.NodePath<any>,
options: DiagnosticOptions,
): void;
export function diagnosticSuggest(
path: t.NodePath<any>,
options: DiagnosticOptions,
): void;
interface ConfirmFix {
type: "confirm";
message: string;
initialValue?: boolean;
}
interface SelectFix {
type: "select";
message: string;
options: {
value: string;
label?: string;
}[];
initialValue?: string;
}
type Computed =
| undefined
| number
| string
| boolean
| RegExp
| bigint
| null
| { [x: string]: Computed }
| Computed[];
export function computeNode(node: t.Node): undefined | { value: Computed };
export function getFile(): t.BabelFile;
export function getProgram(): t.NodePath<t.Program>;