@elmeragroup/internal 0.1.1-canary.1

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.
@@ -0,0 +1,815 @@
1
+ /// <reference lib="esnext.disposable" />
2
+ import { Context, Effect, Layer, Schema } from "effect";
3
+ //#region ../api-extractor/dist/component-sources.d.ts
4
+ declare const ComponentSourceRequestSchema: Schema.Struct<{
5
+ readonly exportName: Schema.String;
6
+ readonly memberName: Schema.optionalKey<Schema.String>;
7
+ }>;
8
+ type ComponentSourceRequest = typeof ComponentSourceRequestSchema.Type;
9
+ declare const ComponentSourceDefaultSchema: Schema.Struct<{
10
+ readonly name: Schema.String;
11
+ readonly initializerText: Schema.String;
12
+ }>;
13
+ type ComponentSourceDefault = typeof ComponentSourceDefaultSchema.Type;
14
+ declare const ComponentSourceUnresolvedReasonSchema: Schema.Literals<readonly ["export-not-found", "member-not-found", "no-implementation", "unsupported-wrapper", "unsupported-default-expression", "unresolved-export", "ambiguous-export", "cycle", "ambiguous-implementation"]>;
15
+ type ComponentSourceUnresolvedReason = typeof ComponentSourceUnresolvedReasonSchema.Type;
16
+ declare const ComponentSourceResolvedSchema: Schema.Struct<{
17
+ readonly status: Schema.Literal<"resolved">;
18
+ readonly filePath: Schema.String;
19
+ readonly defaults: Schema.$Array<Schema.Struct<{
20
+ readonly name: Schema.String;
21
+ readonly initializerText: Schema.String;
22
+ }>>;
23
+ }>;
24
+ type ComponentSourceResolved = typeof ComponentSourceResolvedSchema.Type;
25
+ /**
26
+ * The requested value is a dependency declaration that authored code forwards
27
+ * without implementing: `filePath` is the authored module whose re-export or
28
+ * alias forwards it, and `packageName` the dependency that owns the declaration.
29
+ */
30
+ declare const ComponentSourceForwardedSchema: Schema.Struct<{
31
+ readonly status: Schema.Literal<"forwarded">;
32
+ readonly filePath: Schema.String;
33
+ readonly packageName: Schema.String;
34
+ }>;
35
+ type ComponentSourceForwarded = typeof ComponentSourceForwardedSchema.Type;
36
+ declare const ComponentSourceUnresolvedSchema: Schema.Struct<{
37
+ readonly status: Schema.Literal<"unresolved">;
38
+ readonly reason: Schema.Literals<readonly ["export-not-found", "member-not-found", "no-implementation", "unsupported-wrapper", "unsupported-default-expression", "unresolved-export", "ambiguous-export", "cycle", "ambiguous-implementation"]>;
39
+ }>;
40
+ type ComponentSourceUnresolved = typeof ComponentSourceUnresolvedSchema.Type;
41
+ declare const ComponentSourceResultSchema: Schema.Union<readonly [Schema.Struct<{
42
+ readonly status: Schema.Literal<"resolved">;
43
+ readonly filePath: Schema.String;
44
+ readonly defaults: Schema.$Array<Schema.Struct<{
45
+ readonly name: Schema.String;
46
+ readonly initializerText: Schema.String;
47
+ }>>;
48
+ }>, Schema.Struct<{
49
+ readonly status: Schema.Literal<"forwarded">;
50
+ readonly filePath: Schema.String;
51
+ readonly packageName: Schema.String;
52
+ }>, Schema.Struct<{
53
+ readonly status: Schema.Literal<"unresolved">;
54
+ readonly reason: Schema.Literals<readonly ["export-not-found", "member-not-found", "no-implementation", "unsupported-wrapper", "unsupported-default-expression", "unresolved-export", "ambiguous-export", "cycle", "ambiguous-implementation"]>;
55
+ }>]>;
56
+ type ComponentSourceResult = typeof ComponentSourceResultSchema.Type;
57
+ declare const ComponentSourceResultsSchema: Schema.$Array<Schema.Union<readonly [Schema.Struct<{
58
+ readonly status: Schema.Literal<"resolved">;
59
+ readonly filePath: Schema.String;
60
+ readonly defaults: Schema.$Array<Schema.Struct<{
61
+ readonly name: Schema.String;
62
+ readonly initializerText: Schema.String;
63
+ }>>;
64
+ }>, Schema.Struct<{
65
+ readonly status: Schema.Literal<"forwarded">;
66
+ readonly filePath: Schema.String;
67
+ readonly packageName: Schema.String;
68
+ }>, Schema.Struct<{
69
+ readonly status: Schema.Literal<"unresolved">;
70
+ readonly reason: Schema.Literals<readonly ["export-not-found", "member-not-found", "no-implementation", "unsupported-wrapper", "unsupported-default-expression", "unresolved-export", "ambiguous-export", "cycle", "ambiguous-implementation"]>;
71
+ }>]>>;
72
+ type ComponentSourceResults = typeof ComponentSourceResultsSchema.Type;
73
+ //#endregion
74
+ //#region ../api-extractor/dist/errors.d.ts
75
+ declare const ConfigError_base: Schema.Class<ConfigError, Schema.TaggedStruct<"ConfigError", {
76
+ readonly tsconfigPath: Schema.String;
77
+ readonly message: Schema.String;
78
+ readonly cause: Schema.String;
79
+ }>, import("effect/Cause").YieldableError>;
80
+ declare class ConfigError extends ConfigError_base {}
81
+ declare const BackendError_base: Schema.Class<BackendError, Schema.TaggedStruct<"BackendError", {
82
+ readonly message: Schema.String;
83
+ readonly cause: Schema.String;
84
+ readonly operation: Schema.optionalKey<Schema.String>;
85
+ readonly filePath: Schema.optionalKey<Schema.String>;
86
+ readonly symbolStack: Schema.optionalKey<Schema.$Array<Schema.String>>;
87
+ }>, import("effect/Cause").YieldableError>;
88
+ declare class BackendError extends BackendError_base {}
89
+ declare const FileNotInProgramError_base: Schema.Class<FileNotInProgramError, Schema.TaggedStruct<"FileNotInProgramError", {
90
+ readonly filePath: Schema.String;
91
+ readonly message: Schema.String;
92
+ }>, import("effect/Cause").YieldableError>;
93
+ declare class FileNotInProgramError extends FileNotInProgramError_base {}
94
+ declare const ExtractError_base: Schema.Class<ExtractError, Schema.TaggedStruct<"ExtractError", {
95
+ readonly filePath: Schema.String;
96
+ readonly symbolStack: Schema.$Array<Schema.String>;
97
+ readonly message: Schema.String;
98
+ readonly cause: Schema.String;
99
+ }>, import("effect/Cause").YieldableError>;
100
+ declare class ExtractError extends ExtractError_base {}
101
+ //#endregion
102
+ //#region ../api-extractor/dist/model.d.ts
103
+ /** Every intrinsic the model can name; the type, the schema, and the backend contract derive from it. */
104
+ declare const intrinsicNames: readonly ["any", "bigint", "boolean", "never", "null", "number", "string", "symbol", "undefined", "unknown", "void"];
105
+ type IntrinsicName = (typeof intrinsicNames)[number];
106
+ type TypeName = typeof TypeNameSchema.Type;
107
+ type TypeArgument = {
108
+ readonly type: SemanticType;
109
+ readonly equalToDefault: boolean;
110
+ };
111
+ declare const DocumentationTagSchema: Schema.Struct<{
112
+ readonly name: Schema.String;
113
+ readonly value: Schema.optionalKey<Schema.String>;
114
+ }>;
115
+ type DocumentationTag = typeof DocumentationTagSchema.Type;
116
+ declare const DocumentationSchema: Schema.Struct<{
117
+ readonly description: Schema.optionalKey<Schema.String>;
118
+ readonly defaultValue: Schema.optionalKey<Schema.String>;
119
+ readonly visibility: Schema.optionalKey<Schema.Literals<readonly ["public", "private", "internal"]>>;
120
+ readonly tags: Schema.$Array<Schema.Struct<{
121
+ readonly name: Schema.String;
122
+ readonly value: Schema.optionalKey<Schema.String>;
123
+ }>>;
124
+ }>;
125
+ type Documentation = typeof DocumentationSchema.Type;
126
+ type IntrinsicNode = {
127
+ readonly kind: "intrinsic";
128
+ readonly typeName?: TypeName;
129
+ readonly intrinsic: IntrinsicName;
130
+ };
131
+ type ParameterNode = {
132
+ readonly type: SemanticType;
133
+ readonly name: string;
134
+ readonly documentation?: Documentation;
135
+ readonly optional: boolean;
136
+ readonly defaultValue?: string;
137
+ };
138
+ type TypeParameterNode = {
139
+ readonly name: string;
140
+ readonly constraint?: SemanticType;
141
+ readonly defaultValue?: SemanticType;
142
+ readonly kind: "typeParameter";
143
+ };
144
+ type CallSignatureNode = {
145
+ readonly parameters: readonly ParameterNode[];
146
+ readonly returnValueType: SemanticType;
147
+ readonly typeParameters?: readonly TypeParameterNode[];
148
+ };
149
+ type FunctionNode = {
150
+ readonly kind: "function";
151
+ readonly typeName?: TypeName;
152
+ readonly callSignatures: readonly CallSignatureNode[];
153
+ };
154
+ type PropertyNode = {
155
+ readonly name: string;
156
+ readonly type: SemanticType;
157
+ readonly documentation?: Documentation;
158
+ readonly optional: boolean;
159
+ };
160
+ type IndexSignatureNode = {
161
+ readonly keyName?: string;
162
+ readonly keyType: "string" | "number";
163
+ readonly valueType: SemanticType;
164
+ };
165
+ type ObjectNode = {
166
+ readonly kind: "object";
167
+ readonly typeName?: TypeName;
168
+ readonly properties: readonly PropertyNode[];
169
+ readonly documentation?: Documentation;
170
+ readonly indexSignature?: IndexSignatureNode;
171
+ };
172
+ type ComponentNode = {
173
+ readonly kind: "component";
174
+ readonly typeName?: TypeName;
175
+ readonly props: readonly PropertyNode[];
176
+ };
177
+ type ExternalTypeNode = {
178
+ readonly kind: "external";
179
+ readonly typeName: TypeName;
180
+ };
181
+ type UnionNode = {
182
+ readonly kind: "union";
183
+ readonly typeName?: TypeName;
184
+ readonly types: readonly SemanticType[];
185
+ };
186
+ type IntersectionNode = {
187
+ readonly kind: "intersection";
188
+ readonly typeName?: TypeName;
189
+ readonly types: readonly SemanticType[];
190
+ readonly properties: readonly PropertyNode[];
191
+ };
192
+ type TypeOperatorResolutionKind = "exact" | "baseConstraint" | "fallback";
193
+ type TypeOperatorNode = {
194
+ readonly kind: "typeOperator";
195
+ readonly typeName?: TypeName;
196
+ readonly operator: "keyof";
197
+ readonly type: SemanticType;
198
+ /** The checker's key set for the operand; `type` keeps the authored expression. */
199
+ readonly resolvedType: SemanticType;
200
+ readonly resolutionKind: TypeOperatorResolutionKind;
201
+ };
202
+ type LiteralNode = {
203
+ readonly kind: "literal";
204
+ readonly typeName?: TypeName;
205
+ readonly value: string | number | boolean;
206
+ readonly documentation?: Documentation;
207
+ };
208
+ type EnumMember = {
209
+ readonly name: string;
210
+ readonly value: string | number;
211
+ readonly documentation?: Documentation;
212
+ };
213
+ type EnumNode = {
214
+ readonly kind: "enum";
215
+ readonly typeName: TypeName;
216
+ readonly members: readonly EnumMember[];
217
+ readonly documentation?: Documentation;
218
+ };
219
+ type ArrayNode = {
220
+ readonly kind: "array";
221
+ readonly typeName?: TypeName;
222
+ readonly elementType: SemanticType;
223
+ readonly isReadonly?: true;
224
+ };
225
+ type TupleNode = {
226
+ readonly kind: "tuple";
227
+ readonly typeName?: TypeName;
228
+ readonly types: readonly SemanticType[];
229
+ readonly isReadonly?: true;
230
+ };
231
+ type TypeQueryNode = {
232
+ readonly kind: "typeQuery";
233
+ readonly expressionName: string;
234
+ };
235
+ type ClassProperty = PropertyNode & {
236
+ readonly readonly: boolean;
237
+ readonly isStatic?: boolean;
238
+ };
239
+ type ConstructSignatureNode = {
240
+ readonly parameters: readonly ParameterNode[];
241
+ readonly documentation?: Documentation;
242
+ };
243
+ type ClassMethod = {
244
+ readonly name: string;
245
+ readonly documentation?: Documentation;
246
+ readonly isStatic?: boolean;
247
+ readonly callSignatures: readonly CallSignatureNode[];
248
+ };
249
+ type ClassNode = {
250
+ readonly kind: "class";
251
+ readonly typeName?: TypeName;
252
+ readonly constructSignatures: readonly ConstructSignatureNode[];
253
+ readonly properties: readonly ClassProperty[];
254
+ readonly methods: readonly ClassMethod[];
255
+ readonly typeParameters?: readonly TypeName[];
256
+ };
257
+ type SemanticType = ArrayNode | ClassNode | ComponentNode | EnumNode | ExternalTypeNode | FunctionNode | IntersectionNode | IntrinsicNode | LiteralNode | ObjectNode | TupleNode | TypeOperatorNode | TypeParameterNode | TypeQueryNode | UnionNode;
258
+ declare const TypeNameSchema: Schema.Struct<{
259
+ readonly name: Schema.String;
260
+ readonly namespaces: Schema.optionalKey<Schema.$Array<Schema.String>>;
261
+ readonly typeArguments: Schema.optionalKey<Schema.$Array<Schema.Struct<{
262
+ readonly type: Schema.suspend<Schema.Codec<SemanticType, SemanticType, never, never>>;
263
+ readonly equalToDefault: Schema.Boolean;
264
+ }>>>;
265
+ }>;
266
+ declare const SemanticTypeSchema: Schema.Codec<SemanticType>;
267
+ declare const ExportNodeSchema: Schema.Struct<{
268
+ readonly name: Schema.String;
269
+ readonly type: Schema.Codec<SemanticType, SemanticType, never, never>;
270
+ readonly documentation: Schema.optionalKey<Schema.Struct<{
271
+ readonly description: Schema.optionalKey<Schema.String>;
272
+ readonly defaultValue: Schema.optionalKey<Schema.String>;
273
+ readonly visibility: Schema.optionalKey<Schema.Literals<readonly ["public", "private", "internal"]>>;
274
+ readonly tags: Schema.$Array<Schema.Struct<{
275
+ readonly name: Schema.String;
276
+ readonly value: Schema.optionalKey<Schema.String>;
277
+ }>>;
278
+ }>>;
279
+ readonly reexportedFrom: Schema.optionalKey<Schema.String>;
280
+ readonly extendsTypes: Schema.optionalKey<Schema.$Array<Schema.Struct<{
281
+ readonly name: Schema.String;
282
+ readonly resolvedName: Schema.optionalKey<Schema.String>;
283
+ }>>>;
284
+ }>;
285
+ type ExportNode = typeof ExportNodeSchema.Type;
286
+ declare const ModuleNodeSchema: Schema.Struct<{
287
+ readonly name: Schema.String;
288
+ readonly exports: Schema.$Array<Schema.Struct<{
289
+ readonly name: Schema.String;
290
+ readonly type: Schema.Codec<SemanticType, SemanticType, never, never>;
291
+ readonly documentation: Schema.optionalKey<Schema.Struct<{
292
+ readonly description: Schema.optionalKey<Schema.String>;
293
+ readonly defaultValue: Schema.optionalKey<Schema.String>;
294
+ readonly visibility: Schema.optionalKey<Schema.Literals<readonly ["public", "private", "internal"]>>;
295
+ readonly tags: Schema.$Array<Schema.Struct<{
296
+ readonly name: Schema.String;
297
+ readonly value: Schema.optionalKey<Schema.String>;
298
+ }>>;
299
+ }>>;
300
+ readonly reexportedFrom: Schema.optionalKey<Schema.String>;
301
+ readonly extendsTypes: Schema.optionalKey<Schema.$Array<Schema.Struct<{
302
+ readonly name: Schema.String;
303
+ readonly resolvedName: Schema.optionalKey<Schema.String>;
304
+ }>>>;
305
+ }>>;
306
+ readonly imports: Schema.optionalKey<Schema.$Array<Schema.String>>;
307
+ }>;
308
+ type ModuleNode = typeof ModuleNodeSchema.Type;
309
+ declare const ExtractionResultSchema: Schema.Struct<{
310
+ readonly module: Schema.Struct<{
311
+ readonly name: Schema.String;
312
+ readonly exports: Schema.$Array<Schema.Struct<{
313
+ readonly name: Schema.String;
314
+ readonly type: Schema.Codec<SemanticType, SemanticType, never, never>;
315
+ readonly documentation: Schema.optionalKey<Schema.Struct<{
316
+ readonly description: Schema.optionalKey<Schema.String>;
317
+ readonly defaultValue: Schema.optionalKey<Schema.String>;
318
+ readonly visibility: Schema.optionalKey<Schema.Literals<readonly ["public", "private", "internal"]>>;
319
+ readonly tags: Schema.$Array<Schema.Struct<{
320
+ readonly name: Schema.String;
321
+ readonly value: Schema.optionalKey<Schema.String>;
322
+ }>>;
323
+ }>>;
324
+ readonly reexportedFrom: Schema.optionalKey<Schema.String>;
325
+ readonly extendsTypes: Schema.optionalKey<Schema.$Array<Schema.Struct<{
326
+ readonly name: Schema.String;
327
+ readonly resolvedName: Schema.optionalKey<Schema.String>;
328
+ }>>>;
329
+ }>>;
330
+ readonly imports: Schema.optionalKey<Schema.$Array<Schema.String>>;
331
+ }>;
332
+ readonly warnings: Schema.$Array<Schema.Union<readonly [Schema.Struct<{
333
+ readonly message: Schema.String;
334
+ readonly filePath: Schema.String;
335
+ readonly line: Schema.Number;
336
+ readonly column: Schema.Number;
337
+ readonly parsedSymbolStack: Schema.$Array<Schema.String>;
338
+ readonly code: Schema.Literal<"unsupported-type-fallback">;
339
+ readonly typeFlags: Schema.$Array<Schema.Literals<readonly ["Any", "Unknown", "Undefined", "Null", "Void", "String", "Number", "BigInt", "Boolean", "ESSymbol", "StringLiteral", "NumberLiteral", "BigIntLiteral", "BooleanLiteral", "UniqueESSymbol", "EnumLiteral", "Enum", "NonPrimitive", "Never", "TypeParameter", "Object", "Index", "TemplateLiteral", "StringMapping", "Substitution", "IndexedAccess", "Conditional", "Union", "Intersection", "Other"]>>;
340
+ readonly typeText: Schema.String;
341
+ readonly sourceText: Schema.optionalKey<Schema.String>;
342
+ }>, Schema.Struct<{
343
+ readonly message: Schema.String;
344
+ readonly filePath: Schema.String;
345
+ readonly line: Schema.Number;
346
+ readonly column: Schema.Number;
347
+ readonly parsedSymbolStack: Schema.$Array<Schema.String>;
348
+ readonly code: Schema.Literal<"missing-enum-declaration">;
349
+ readonly enumName: Schema.String;
350
+ readonly memberName: Schema.optionalKey<Schema.String>;
351
+ }>, Schema.Struct<{
352
+ readonly message: Schema.String;
353
+ readonly filePath: Schema.String;
354
+ readonly line: Schema.Number;
355
+ readonly column: Schema.Number;
356
+ readonly parsedSymbolStack: Schema.$Array<Schema.String>;
357
+ readonly code: Schema.Literal<"missing-default-export-symbol">;
358
+ readonly sourceText: Schema.String;
359
+ }>, Schema.Struct<{
360
+ readonly message: Schema.String;
361
+ readonly filePath: Schema.String;
362
+ readonly line: Schema.Number;
363
+ readonly column: Schema.Number;
364
+ readonly parsedSymbolStack: Schema.$Array<Schema.String>;
365
+ readonly code: Schema.Literal<"omitted-index-signature">;
366
+ readonly reason: Schema.Literals<readonly ["unrepresentable-key", "additional-signature"]>;
367
+ readonly keyTypes: Schema.$Array<Schema.Literals<readonly ["string", "number", "symbol", "other"]>>;
368
+ }>, Schema.Struct<{
369
+ readonly message: Schema.String;
370
+ readonly filePath: Schema.String;
371
+ readonly line: Schema.Number;
372
+ readonly column: Schema.Number;
373
+ readonly parsedSymbolStack: Schema.$Array<Schema.String>;
374
+ readonly code: Schema.Literal<"unrepresented-construct-signatures">;
375
+ readonly structuralPath: Schema.$Array<Schema.String>;
376
+ readonly signatureCount: Schema.Natural;
377
+ }>, Schema.Struct<{
378
+ readonly message: Schema.String;
379
+ readonly filePath: Schema.String;
380
+ readonly line: Schema.Number;
381
+ readonly column: Schema.Number;
382
+ readonly parsedSymbolStack: Schema.$Array<Schema.String>;
383
+ readonly code: Schema.Literal<"omitted-callable-members">;
384
+ readonly structuralPath: Schema.$Array<Schema.String>;
385
+ readonly memberNames: Schema.$Array<Schema.String>;
386
+ }>, Schema.Struct<{
387
+ readonly message: Schema.String;
388
+ readonly filePath: Schema.String;
389
+ readonly line: Schema.Number;
390
+ readonly column: Schema.Number;
391
+ readonly parsedSymbolStack: Schema.$Array<Schema.String>;
392
+ readonly code: Schema.Literal<"unresolved-re-export">;
393
+ readonly reason: Schema.Literals<readonly ["missing-target", "cycle", "ambiguous"]>;
394
+ readonly name: Schema.String;
395
+ }>, Schema.Struct<{
396
+ readonly message: Schema.String;
397
+ readonly filePath: Schema.String;
398
+ readonly line: Schema.Number;
399
+ readonly column: Schema.Number;
400
+ readonly parsedSymbolStack: Schema.$Array<Schema.String>;
401
+ readonly code: Schema.Literal<"uncertain-component-recognition">;
402
+ readonly reason: Schema.Literals<readonly ["mixed-component-union"]>;
403
+ readonly name: Schema.String;
404
+ }>]>>;
405
+ readonly provenance: Schema.$Array<Schema.Struct<{
406
+ readonly path: Schema.$Array<Schema.String>;
407
+ readonly declarations: Schema.$Array<Schema.Struct<{
408
+ readonly path: Schema.String;
409
+ readonly owner: Schema.optionalKey<Schema.Union<readonly [Schema.Struct<{
410
+ readonly kind: Schema.Literal<"project">;
411
+ }>, Schema.Struct<{
412
+ readonly kind: Schema.Literal<"dependency">;
413
+ readonly packageName: Schema.String;
414
+ }>, Schema.Struct<{
415
+ readonly kind: Schema.Literal<"external">;
416
+ }>, Schema.Struct<{
417
+ readonly kind: Schema.Literal<"typescript">;
418
+ readonly library: Schema.Literals<readonly ["standard-library", "toolchain"]>;
419
+ }>]>>;
420
+ }>>;
421
+ readonly synthesized: Schema.Boolean;
422
+ readonly readonly: Schema.optionalKey<Schema.Boolean>;
423
+ readonly defaultInitializer: Schema.optionalKey<Schema.String>;
424
+ readonly reexportChain: Schema.optionalKey<Schema.$Array<Schema.String>>;
425
+ }>>;
426
+ }>;
427
+ //#endregion
428
+ //#region ../api-extractor/dist/options.d.ts
429
+ /** Data supplied before an object property is included in the semantic model. */
430
+ type ShouldIncludeData = {
431
+ name: string;
432
+ depth: number;
433
+ };
434
+ /** Data supplied before an object's shape is expanded in the semantic model. */
435
+ type ShouldResolveObjectData = {
436
+ /** Name of the object's type, or an empty string for an anonymous shape. */
437
+ name: string;
438
+ /** Number of properties the object would contribute to the output. */
439
+ propertyCount: number;
440
+ /** Depth of the type-resolution stack, counting every intermediate type. */
441
+ depth: number;
442
+ /** Number of property values traversed to reach this object. */
443
+ propertyDepth: number;
444
+ };
445
+ type ExtractorOptions = {
446
+ readonly shouldInclude?: (data: ShouldIncludeData) => boolean | undefined;
447
+ readonly shouldResolveObject?: (data: ShouldResolveObjectData) => boolean | undefined;
448
+ /**
449
+ * Expands no external types by default, every external type when `true`, or
450
+ * only dependency declarations owned by an exact package name in the list.
451
+ *
452
+ * The two non-`true` forms apply different quantifiers, on purpose: `false`
453
+ * summarizes a symbol as soon as ANY of its declarations is external
454
+ * (upstream's `isSymbolExternal`), while a package list expands a symbol only
455
+ * when EVERY declaration is project-owned or owned by a listed package, so a
456
+ * symbol merged from a listed and an unlisted dependency stays summarized.
457
+ */
458
+ readonly includeExternalTypes?: boolean | readonly string[];
459
+ };
460
+ declare const defaultExtractorOptions: Required<Pick<ExtractorOptions, "shouldResolveObject" | "includeExternalTypes">>;
461
+ type ProjectFileSystemEntries = {
462
+ readonly files: readonly string[];
463
+ readonly directories: readonly string[];
464
+ };
465
+ type ProjectFileSystem = {
466
+ readonly directoryExists?: (directoryName: string) => boolean | undefined;
467
+ readonly fileExists?: (fileName: string) => boolean | undefined;
468
+ readonly getAccessibleEntries?: (directoryName: string) => ProjectFileSystemEntries | undefined;
469
+ readonly readFile?: (fileName: string) => string | null | undefined;
470
+ readonly realpath?: (path: string) => string | undefined;
471
+ readonly writeFile?: (path: string, content: string) => void;
472
+ readonly removeFile?: (path: string) => void;
473
+ };
474
+ type OpenProjectOptions = {
475
+ readonly tsconfigPath: string;
476
+ readonly cwd?: string;
477
+ readonly fileSystem?: ProjectFileSystem;
478
+ };
479
+ //#endregion
480
+ //#region ../api-extractor/dist/extractor.d.ts
481
+ type ExtractionResult = typeof ExtractionResultSchema.Type;
482
+ type ExtractionErrors = BackendError | FileNotInProgramError | ExtractError;
483
+ type ProjectExtractorService = {
484
+ readonly extractModule: (filePath: string, options?: ExtractorOptions) => Effect.Effect<ExtractionResult, ExtractionErrors>;
485
+ readonly inspectComponentSources: (filePath: string, requests: readonly ComponentSourceRequest[]) => Effect.Effect<readonly ComponentSourceResult[], ExtractionErrors>;
486
+ };
487
+ declare const ProjectExtractor_base: Context.ServiceClass<ProjectExtractor, "elmera/api-extractor/ProjectExtractor", ProjectExtractorService>;
488
+ declare class ProjectExtractor extends ProjectExtractor_base {
489
+ static live(options: OpenProjectOptions): Layer.Layer<ProjectExtractor, ConfigError | BackendError>;
490
+ }
491
+ //#endregion
492
+ //#region ../api-extractor/dist/provenance.d.ts
493
+ /**
494
+ * Who owns one declaration file, as the backend classified it: the extracted
495
+ * project, a dependency package, an external file with no package owner, or
496
+ * TypeScript's own library or toolchain files.
497
+ */
498
+ declare const DeclarationOwnerSchema: Schema.Union<readonly [Schema.Struct<{
499
+ readonly kind: Schema.Literal<"project">;
500
+ }>, Schema.Struct<{
501
+ readonly kind: Schema.Literal<"dependency">;
502
+ readonly packageName: Schema.String;
503
+ }>, Schema.Struct<{
504
+ readonly kind: Schema.Literal<"external">;
505
+ }>, Schema.Struct<{
506
+ readonly kind: Schema.Literal<"typescript">;
507
+ readonly library: Schema.Literals<readonly ["standard-library", "toolchain"]>;
508
+ }>]>;
509
+ type DeclarationOwner = typeof DeclarationOwnerSchema.Type;
510
+ /** One declaring source file of a model node, with its owner when the backend could classify it. */
511
+ declare const ProvenanceDeclarationSchema: Schema.Struct<{
512
+ /** Repository-relative path of the declaring file. */
513
+ readonly path: Schema.String;
514
+ /**
515
+ * Who owns the file. Present whenever the backend reported a declaration
516
+ * handle for the path, so a consumer can ask "is this project-owned?" or
517
+ * "which package declares it?" without parsing the path.
518
+ */
519
+ readonly owner: Schema.optionalKey<Schema.Union<readonly [Schema.Struct<{
520
+ readonly kind: Schema.Literal<"project">;
521
+ }>, Schema.Struct<{
522
+ readonly kind: Schema.Literal<"dependency">;
523
+ readonly packageName: Schema.String;
524
+ }>, Schema.Struct<{
525
+ readonly kind: Schema.Literal<"external">;
526
+ }>, Schema.Struct<{
527
+ readonly kind: Schema.Literal<"typescript">;
528
+ readonly library: Schema.Literals<readonly ["standard-library", "toolchain"]>;
529
+ }>]>>;
530
+ }>;
531
+ type ProvenanceDeclaration = typeof ProvenanceDeclarationSchema.Type;
532
+ declare const ProvenanceEntrySchema: Schema.Struct<{
533
+ readonly path: Schema.$Array<Schema.String>;
534
+ /** The declaring files, sorted by path; empty for a compiler-synthesized node. */
535
+ readonly declarations: Schema.$Array<Schema.Struct<{
536
+ /** Repository-relative path of the declaring file. */
537
+ readonly path: Schema.String;
538
+ /**
539
+ * Who owns the file. Present whenever the backend reported a declaration
540
+ * handle for the path, so a consumer can ask "is this project-owned?" or
541
+ * "which package declares it?" without parsing the path.
542
+ */
543
+ readonly owner: Schema.optionalKey<Schema.Union<readonly [Schema.Struct<{
544
+ readonly kind: Schema.Literal<"project">;
545
+ }>, Schema.Struct<{
546
+ readonly kind: Schema.Literal<"dependency">;
547
+ readonly packageName: Schema.String;
548
+ }>, Schema.Struct<{
549
+ readonly kind: Schema.Literal<"external">;
550
+ }>, Schema.Struct<{
551
+ readonly kind: Schema.Literal<"typescript">;
552
+ readonly library: Schema.Literals<readonly ["standard-library", "toolchain"]>;
553
+ }>]>>;
554
+ }>>;
555
+ readonly synthesized: Schema.Boolean;
556
+ /** Readonly declaration state kept out of the upstream semantic JSON model. */
557
+ readonly readonly: Schema.optionalKey<Schema.Boolean>;
558
+ readonly defaultInitializer: Schema.optionalKey<Schema.String>;
559
+ /**
560
+ * Repository-relative files of each intermediate re-export declaration that
561
+ * forwarded this export, outermost first. The original declaration site is
562
+ * carried by `declarations`; a directly declared export has no chain.
563
+ */
564
+ readonly reexportChain: Schema.optionalKey<Schema.$Array<Schema.String>>;
565
+ }>;
566
+ type ProvenanceEntry = typeof ProvenanceEntrySchema.Type;
567
+ declare const ProvenanceSchema: Schema.$Array<Schema.Struct<{
568
+ readonly path: Schema.$Array<Schema.String>;
569
+ /** The declaring files, sorted by path; empty for a compiler-synthesized node. */
570
+ readonly declarations: Schema.$Array<Schema.Struct<{
571
+ /** Repository-relative path of the declaring file. */
572
+ readonly path: Schema.String;
573
+ /**
574
+ * Who owns the file. Present whenever the backend reported a declaration
575
+ * handle for the path, so a consumer can ask "is this project-owned?" or
576
+ * "which package declares it?" without parsing the path.
577
+ */
578
+ readonly owner: Schema.optionalKey<Schema.Union<readonly [Schema.Struct<{
579
+ readonly kind: Schema.Literal<"project">;
580
+ }>, Schema.Struct<{
581
+ readonly kind: Schema.Literal<"dependency">;
582
+ readonly packageName: Schema.String;
583
+ }>, Schema.Struct<{
584
+ readonly kind: Schema.Literal<"external">;
585
+ }>, Schema.Struct<{
586
+ readonly kind: Schema.Literal<"typescript">;
587
+ readonly library: Schema.Literals<readonly ["standard-library", "toolchain"]>;
588
+ }>]>>;
589
+ }>>;
590
+ readonly synthesized: Schema.Boolean;
591
+ /** Readonly declaration state kept out of the upstream semantic JSON model. */
592
+ readonly readonly: Schema.optionalKey<Schema.Boolean>;
593
+ readonly defaultInitializer: Schema.optionalKey<Schema.String>;
594
+ /**
595
+ * Repository-relative files of each intermediate re-export declaration that
596
+ * forwarded this export, outermost first. The original declaration site is
597
+ * carried by `declarations`; a directly declared export has no chain.
598
+ */
599
+ readonly reexportChain: Schema.optionalKey<Schema.$Array<Schema.String>>;
600
+ }>>;
601
+ //#endregion
602
+ //#region ../api-extractor/dist/warnings.d.ts
603
+ declare const typeFlagNames: readonly ["Any", "Unknown", "Undefined", "Null", "Void", "String", "Number", "BigInt", "Boolean", "ESSymbol", "StringLiteral", "NumberLiteral", "BigIntLiteral", "BooleanLiteral", "UniqueESSymbol", "EnumLiteral", "Enum", "NonPrimitive", "Never", "TypeParameter", "Object", "Index", "TemplateLiteral", "StringMapping", "Substitution", "IndexedAccess", "Conditional", "Union", "Intersection", "Other"];
604
+ type TypeFlagName = (typeof typeFlagNames)[number];
605
+ /**
606
+ * Why an index signature the type declares is missing from the model.
607
+ *
608
+ * `unrepresentable-key` is a key domain the semantic model has no encoding for —
609
+ * a `symbol` key, or a template-literal pattern key. `additional-signature` is a
610
+ * key that *is* representable but lost the model's single index-signature slot,
611
+ * which is what happens to the legal `string` plus `number` pair.
612
+ */
613
+ type OmittedIndexSignatureReason = "unrepresentable-key" | "additional-signature";
614
+ /**
615
+ * Why a re-export produced no export: its alias chain dead-ends
616
+ * (`missing-target`) or returns to a namespace already being flattened
617
+ * (`cycle`). A third condition, `ambiguous`, is detected above this union by
618
+ * star-export collision analysis and reported with the same code.
619
+ */
620
+ type UnresolvedReExportReason = "missing-target" | "cycle" | "ambiguous";
621
+ /**
622
+ * Why an export that looks like a React component was left untransformed.
623
+ * `mixed-component-union` is a capitalized export whose union type holds some
624
+ * arms returning React node types and at least one arm that does not: the
625
+ * component heuristic cannot confirm the export describes one component, so
626
+ * the resolved union kind stands and this warning records the uncertainty
627
+ * instead of silently changing the semantic kind.
628
+ */
629
+ type UncertainComponentRecognitionReason = "mixed-component-union";
630
+ /** The extractor substituted `any` for a type shape it cannot model. */
631
+ declare const UnsupportedTypeFallbackWarningSchema: Schema.Struct<{
632
+ readonly message: Schema.String;
633
+ readonly filePath: Schema.String;
634
+ readonly line: Schema.Number;
635
+ readonly column: Schema.Number;
636
+ readonly parsedSymbolStack: Schema.$Array<Schema.String>;
637
+ readonly code: Schema.Literal<"unsupported-type-fallback">;
638
+ readonly typeFlags: Schema.$Array<Schema.Literals<readonly ["Any", "Unknown", "Undefined", "Null", "Void", "String", "Number", "BigInt", "Boolean", "ESSymbol", "StringLiteral", "NumberLiteral", "BigIntLiteral", "BooleanLiteral", "UniqueESSymbol", "EnumLiteral", "Enum", "NonPrimitive", "Never", "TypeParameter", "Object", "Index", "TemplateLiteral", "StringMapping", "Substitution", "IndexedAccess", "Conditional", "Union", "Intersection", "Other"]>>;
639
+ readonly typeText: Schema.String;
640
+ readonly sourceText: Schema.optionalKey<Schema.String>;
641
+ }>;
642
+ type UnsupportedTypeFallbackWarning = typeof UnsupportedTypeFallbackWarningSchema.Type;
643
+ declare const MissingEnumDeclarationWarningSchema: Schema.Struct<{
644
+ readonly message: Schema.String;
645
+ readonly filePath: Schema.String;
646
+ readonly line: Schema.Number;
647
+ readonly column: Schema.Number;
648
+ readonly parsedSymbolStack: Schema.$Array<Schema.String>;
649
+ readonly code: Schema.Literal<"missing-enum-declaration">;
650
+ readonly enumName: Schema.String;
651
+ readonly memberName: Schema.optionalKey<Schema.String>;
652
+ }>;
653
+ type MissingEnumDeclarationWarning = typeof MissingEnumDeclarationWarningSchema.Type;
654
+ /**
655
+ * An `export default` expression the checker could not resolve to a symbol,
656
+ * so the export is skipped. Upstream emits the same condition.
657
+ */
658
+ declare const MissingDefaultExportSymbolWarningSchema: Schema.Struct<{
659
+ readonly message: Schema.String;
660
+ readonly filePath: Schema.String;
661
+ readonly line: Schema.Number;
662
+ readonly column: Schema.Number;
663
+ readonly parsedSymbolStack: Schema.$Array<Schema.String>;
664
+ readonly code: Schema.Literal<"missing-default-export-symbol">;
665
+ readonly sourceText: Schema.String;
666
+ }>;
667
+ type MissingDefaultExportSymbolWarning = typeof MissingDefaultExportSymbolWarningSchema.Type;
668
+ declare const OmittedIndexSignatureWarningSchema: Schema.Struct<{
669
+ readonly message: Schema.String;
670
+ readonly filePath: Schema.String;
671
+ readonly line: Schema.Number;
672
+ readonly column: Schema.Number;
673
+ readonly parsedSymbolStack: Schema.$Array<Schema.String>;
674
+ readonly code: Schema.Literal<"omitted-index-signature">;
675
+ readonly reason: Schema.Literals<readonly ["unrepresentable-key", "additional-signature"]>;
676
+ readonly keyTypes: Schema.$Array<Schema.Literals<readonly ["string", "number", "symbol", "other"]>>;
677
+ }>;
678
+ type OmittedIndexSignatureWarning = typeof OmittedIndexSignatureWarningSchema.Type;
679
+ /**
680
+ * A construct signature the model cannot carry because its owner is not a
681
+ * class — an interface or object literal type that only declares `new (…)`.
682
+ * Upstream reports such shapes as bare objects; the warning records what was
683
+ * omitted and where in the semantic tree it would have lived.
684
+ */
685
+ declare const UnrepresentedConstructSignaturesWarningSchema: Schema.Struct<{
686
+ readonly message: Schema.String;
687
+ readonly filePath: Schema.String;
688
+ readonly line: Schema.Number;
689
+ readonly column: Schema.Number;
690
+ readonly parsedSymbolStack: Schema.$Array<Schema.String>;
691
+ readonly code: Schema.Literal<"unrepresented-construct-signatures">;
692
+ readonly structuralPath: Schema.$Array<Schema.String>;
693
+ readonly signatureCount: Schema.Natural;
694
+ }>;
695
+ type UnrepresentedConstructSignaturesWarning = typeof UnrepresentedConstructSignaturesWarningSchema.Type;
696
+ /**
697
+ * Named members a callable shape carries besides its call signatures. A
698
+ * function node has no member list, so an interface that merges call
699
+ * signatures with properties keeps only the callable half; the warning names
700
+ * the members that did not survive.
701
+ */
702
+ declare const OmittedCallableMembersWarningSchema: Schema.Struct<{
703
+ readonly message: Schema.String;
704
+ readonly filePath: Schema.String;
705
+ readonly line: Schema.Number;
706
+ readonly column: Schema.Number;
707
+ readonly parsedSymbolStack: Schema.$Array<Schema.String>;
708
+ readonly code: Schema.Literal<"omitted-callable-members">;
709
+ readonly structuralPath: Schema.$Array<Schema.String>;
710
+ readonly memberNames: Schema.$Array<Schema.String>;
711
+ }>;
712
+ type OmittedCallableMembersWarning = typeof OmittedCallableMembersWarningSchema.Type;
713
+ /**
714
+ * A re-export the module walk could not follow to an original declaration.
715
+ * The export is skipped; the warning names it, says why, and anchors the
716
+ * location at the re-exporting module.
717
+ */
718
+ declare const UnresolvedReExportWarningSchema: Schema.Struct<{
719
+ readonly message: Schema.String;
720
+ readonly filePath: Schema.String;
721
+ readonly line: Schema.Number;
722
+ readonly column: Schema.Number;
723
+ readonly parsedSymbolStack: Schema.$Array<Schema.String>;
724
+ readonly code: Schema.Literal<"unresolved-re-export">;
725
+ readonly reason: Schema.Literals<readonly ["missing-target", "cycle", "ambiguous"]>;
726
+ readonly name: Schema.String;
727
+ }>;
728
+ type UnresolvedReExportWarning = typeof UnresolvedReExportWarningSchema.Type;
729
+ declare const UncertainComponentRecognitionWarningSchema: Schema.Struct<{
730
+ readonly message: Schema.String;
731
+ readonly filePath: Schema.String;
732
+ readonly line: Schema.Number;
733
+ readonly column: Schema.Number;
734
+ readonly parsedSymbolStack: Schema.$Array<Schema.String>;
735
+ readonly code: Schema.Literal<"uncertain-component-recognition">;
736
+ readonly reason: Schema.Literals<readonly ["mixed-component-union"]>;
737
+ readonly name: Schema.String;
738
+ }>;
739
+ type UncertainComponentRecognitionWarning = typeof UncertainComponentRecognitionWarningSchema.Type;
740
+ declare const ExtractWarningSchema: Schema.Union<readonly [Schema.Struct<{
741
+ readonly message: Schema.String;
742
+ readonly filePath: Schema.String;
743
+ readonly line: Schema.Number;
744
+ readonly column: Schema.Number;
745
+ readonly parsedSymbolStack: Schema.$Array<Schema.String>;
746
+ readonly code: Schema.Literal<"unsupported-type-fallback">;
747
+ readonly typeFlags: Schema.$Array<Schema.Literals<readonly ["Any", "Unknown", "Undefined", "Null", "Void", "String", "Number", "BigInt", "Boolean", "ESSymbol", "StringLiteral", "NumberLiteral", "BigIntLiteral", "BooleanLiteral", "UniqueESSymbol", "EnumLiteral", "Enum", "NonPrimitive", "Never", "TypeParameter", "Object", "Index", "TemplateLiteral", "StringMapping", "Substitution", "IndexedAccess", "Conditional", "Union", "Intersection", "Other"]>>;
748
+ readonly typeText: Schema.String;
749
+ readonly sourceText: Schema.optionalKey<Schema.String>;
750
+ }>, Schema.Struct<{
751
+ readonly message: Schema.String;
752
+ readonly filePath: Schema.String;
753
+ readonly line: Schema.Number;
754
+ readonly column: Schema.Number;
755
+ readonly parsedSymbolStack: Schema.$Array<Schema.String>;
756
+ readonly code: Schema.Literal<"missing-enum-declaration">;
757
+ readonly enumName: Schema.String;
758
+ readonly memberName: Schema.optionalKey<Schema.String>;
759
+ }>, Schema.Struct<{
760
+ readonly message: Schema.String;
761
+ readonly filePath: Schema.String;
762
+ readonly line: Schema.Number;
763
+ readonly column: Schema.Number;
764
+ readonly parsedSymbolStack: Schema.$Array<Schema.String>;
765
+ readonly code: Schema.Literal<"missing-default-export-symbol">;
766
+ readonly sourceText: Schema.String;
767
+ }>, Schema.Struct<{
768
+ readonly message: Schema.String;
769
+ readonly filePath: Schema.String;
770
+ readonly line: Schema.Number;
771
+ readonly column: Schema.Number;
772
+ readonly parsedSymbolStack: Schema.$Array<Schema.String>;
773
+ readonly code: Schema.Literal<"omitted-index-signature">;
774
+ readonly reason: Schema.Literals<readonly ["unrepresentable-key", "additional-signature"]>;
775
+ readonly keyTypes: Schema.$Array<Schema.Literals<readonly ["string", "number", "symbol", "other"]>>;
776
+ }>, Schema.Struct<{
777
+ readonly message: Schema.String;
778
+ readonly filePath: Schema.String;
779
+ readonly line: Schema.Number;
780
+ readonly column: Schema.Number;
781
+ readonly parsedSymbolStack: Schema.$Array<Schema.String>;
782
+ readonly code: Schema.Literal<"unrepresented-construct-signatures">;
783
+ readonly structuralPath: Schema.$Array<Schema.String>;
784
+ readonly signatureCount: Schema.Natural;
785
+ }>, Schema.Struct<{
786
+ readonly message: Schema.String;
787
+ readonly filePath: Schema.String;
788
+ readonly line: Schema.Number;
789
+ readonly column: Schema.Number;
790
+ readonly parsedSymbolStack: Schema.$Array<Schema.String>;
791
+ readonly code: Schema.Literal<"omitted-callable-members">;
792
+ readonly structuralPath: Schema.$Array<Schema.String>;
793
+ readonly memberNames: Schema.$Array<Schema.String>;
794
+ }>, Schema.Struct<{
795
+ readonly message: Schema.String;
796
+ readonly filePath: Schema.String;
797
+ readonly line: Schema.Number;
798
+ readonly column: Schema.Number;
799
+ readonly parsedSymbolStack: Schema.$Array<Schema.String>;
800
+ readonly code: Schema.Literal<"unresolved-re-export">;
801
+ readonly reason: Schema.Literals<readonly ["missing-target", "cycle", "ambiguous"]>;
802
+ readonly name: Schema.String;
803
+ }>, Schema.Struct<{
804
+ readonly message: Schema.String;
805
+ readonly filePath: Schema.String;
806
+ readonly line: Schema.Number;
807
+ readonly column: Schema.Number;
808
+ readonly parsedSymbolStack: Schema.$Array<Schema.String>;
809
+ readonly code: Schema.Literal<"uncertain-component-recognition">;
810
+ readonly reason: Schema.Literals<readonly ["mixed-component-union"]>;
811
+ readonly name: Schema.String;
812
+ }>]>;
813
+ type ExtractWarning = typeof ExtractWarningSchema.Type;
814
+ //#endregion
815
+ export { ExtractionResultSchema as $, ExtractionResult as A, ComponentSourceRequestSchema as At, ArrayNode as B, ComponentSourceUnresolvedSchema as Bt, DeclarationOwner as C, ExtractError as Ct, ProvenanceEntry as D, ComponentSourceForwarded as Dt, ProvenanceDeclarationSchema as E, ComponentSourceDefaultSchema as Et, ProjectFileSystem as F, ComponentSourceResults as Ft, ComponentNode as G, ClassMethod as H, ProjectFileSystemEntries as I, ComponentSourceResultsSchema as It, DocumentationTag as J, ConstructSignatureNode as K, ShouldIncludeData as L, ComponentSourceUnresolved as Lt, ProjectExtractorService as M, ComponentSourceResolvedSchema as Mt, ExtractorOptions as N, ComponentSourceResult as Nt, ProvenanceEntrySchema as O, ComponentSourceForwardedSchema as Ot, OpenProjectOptions as P, ComponentSourceResultSchema as Pt, ExternalTypeNode as Q, ShouldResolveObjectData as R, ComponentSourceUnresolvedReason as Rt, UnsupportedTypeFallbackWarningSchema as S, ConfigError as St, ProvenanceDeclaration as T, ComponentSourceDefault as Tt, ClassNode as U, CallSignatureNode as V, ClassProperty as W, EnumNode as X, EnumMember as Y, ExportNode as Z, UnrepresentedConstructSignaturesWarningSchema as _, TypeOperatorResolutionKind as _t, MissingEnumDeclarationWarning as a, LiteralNode as at, UnresolvedReExportWarningSchema as b, UnionNode as bt, OmittedCallableMembersWarningSchema as c, ObjectNode as ct, OmittedIndexSignatureWarningSchema as d, SemanticType as dt, FunctionNode as et, TypeFlagName as f, SemanticTypeSchema as ft, UnrepresentedConstructSignaturesWarning as g, TypeOperatorNode as gt, UncertainComponentRecognitionWarningSchema as h, TypeName as ht, MissingDefaultExportSymbolWarningSchema as i, IntrinsicNode as it, ProjectExtractor as j, ComponentSourceResolved as jt, ProvenanceSchema as k, ComponentSourceRequest as kt, OmittedIndexSignatureReason as l, ParameterNode as lt, UncertainComponentRecognitionWarning as m, TypeArgument as mt, ExtractWarningSchema as n, IntersectionNode as nt, MissingEnumDeclarationWarningSchema as o, ModuleNode as ot, UncertainComponentRecognitionReason as p, TupleNode as pt, Documentation as q, MissingDefaultExportSymbolWarning as r, IntrinsicName as rt, OmittedCallableMembersWarning as s, ModuleNodeSchema as st, ExtractWarning as t, IndexSignatureNode as tt, OmittedIndexSignatureWarning as u, PropertyNode as ut, UnresolvedReExportReason as v, TypeParameterNode as vt, DeclarationOwnerSchema as w, FileNotInProgramError as wt, UnsupportedTypeFallbackWarning as x, BackendError as xt, UnresolvedReExportWarning as y, TypeQueryNode as yt, defaultExtractorOptions as z, ComponentSourceUnresolvedReasonSchema as zt };