uni-types 1.11.0 → 1.12.0

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/dist/index.d.mts CHANGED
@@ -5584,6 +5584,289 @@ type ListConcat<A extends unknown[], B extends unknown[]> = [...A, ...B];
5584
5584
  */
5585
5585
  type ListLength<T extends unknown[], Acc extends 0[] = []> = T extends [unknown, ...infer Rest] ? ListLength<Rest, [...Acc, 0]> : Acc['length'];
5586
5586
  //#endregion
5587
+ //#region src/community/index.d.ts
5588
+ /**
5589
+ * Community Feedback System
5590
+ *
5591
+ * Tools for collecting community feedback, bug reports,
5592
+ * feature requests, and survey data.
5593
+ */
5594
+ /**
5595
+ * FeatureFeedback - Feedback about a specific feature
5596
+ */
5597
+ interface FeatureFeedback<T = unknown> {
5598
+ /** Feature name */
5599
+ feature: string;
5600
+ /** Rating (1-5) */
5601
+ rating: number;
5602
+ /** Comment */
5603
+ comment?: string;
5604
+ /** User data */
5605
+ user?: T;
5606
+ /** Timestamp */
5607
+ timestamp: number;
5608
+ }
5609
+ /**
5610
+ * BugReport - Bug report type
5611
+ */
5612
+ interface BugReport<T = unknown> {
5613
+ /** Report title */
5614
+ title: string;
5615
+ /** Description */
5616
+ description: string;
5617
+ /** Steps to reproduce */
5618
+ steps: string[];
5619
+ /** Expected behavior */
5620
+ expected: string;
5621
+ /** Actual behavior */
5622
+ actual: string;
5623
+ /** Severity */
5624
+ severity: BugSeverity;
5625
+ /** Environment */
5626
+ environment?: EnvironmentInfo;
5627
+ /** Attachments */
5628
+ attachments?: AttachmentInfo[];
5629
+ /** Reporter */
5630
+ reporter?: T;
5631
+ /** Timestamp */
5632
+ timestamp: number;
5633
+ }
5634
+ /**
5635
+ * Bug severity levels
5636
+ */
5637
+ type BugSeverity = 'critical' | 'high' | 'medium' | 'low' | 'trivial';
5638
+ /**
5639
+ * Environment info
5640
+ */
5641
+ interface EnvironmentInfo {
5642
+ /** OS */
5643
+ os?: string;
5644
+ /** Browser */
5645
+ browser?: string;
5646
+ /** Node.js version */
5647
+ nodeVersion?: string;
5648
+ /** Package version */
5649
+ packageVersion?: string;
5650
+ /** TypeScript version */
5651
+ typescriptVersion?: string;
5652
+ }
5653
+ /**
5654
+ * Attachment info
5655
+ */
5656
+ interface AttachmentInfo {
5657
+ /** File name */
5658
+ name: string;
5659
+ /** File type */
5660
+ type: string;
5661
+ /** File size */
5662
+ size: number;
5663
+ /** URL */
5664
+ url?: string;
5665
+ }
5666
+ /**
5667
+ * FeatureRequest - Feature request type
5668
+ */
5669
+ interface FeatureRequest<T = unknown> {
5670
+ /** Request title */
5671
+ title: string;
5672
+ /** Description */
5673
+ description: string;
5674
+ /** Use case */
5675
+ useCase: string;
5676
+ /** Priority */
5677
+ priority: FeaturePriority;
5678
+ /** Category */
5679
+ category: FeatureCategory;
5680
+ /** Proposed solution */
5681
+ proposedSolution?: string;
5682
+ /** Alternatives considered */
5683
+ alternatives?: string[];
5684
+ /** Upvotes */
5685
+ upvotes: number;
5686
+ /** Requester */
5687
+ requester?: T;
5688
+ /** Timestamp */
5689
+ timestamp: number;
5690
+ }
5691
+ /**
5692
+ * Feature priority
5693
+ */
5694
+ type FeaturePriority = 'critical' | 'high' | 'medium' | 'low' | 'nice-to-have';
5695
+ /**
5696
+ * Feature category
5697
+ */
5698
+ type FeatureCategory = 'core' | 'performance' | 'developer-experience' | 'documentation' | 'ecosystem' | 'tooling' | 'other';
5699
+ /**
5700
+ * UserSuggestion - User suggestion type
5701
+ */
5702
+ interface UserSuggestion<T = unknown> {
5703
+ /** Suggestion title */
5704
+ title: string;
5705
+ /** Suggestion content */
5706
+ content: string;
5707
+ /** Category */
5708
+ category: SuggestionCategory;
5709
+ /** User */
5710
+ user?: T;
5711
+ /** Timestamp */
5712
+ timestamp: number;
5713
+ /** Status */
5714
+ status: SuggestionStatus;
5715
+ }
5716
+ /**
5717
+ * Suggestion category
5718
+ */
5719
+ type SuggestionCategory = 'improvement' | 'new-feature' | 'documentation' | 'performance' | 'api-design' | 'other';
5720
+ /**
5721
+ * Suggestion status
5722
+ */
5723
+ type SuggestionStatus = 'new' | 'under-review' | 'accepted' | 'declined' | 'implemented';
5724
+ /**
5725
+ * Survey - Survey type
5726
+ */
5727
+ interface Survey<T = unknown> {
5728
+ /** Survey ID */
5729
+ id: string;
5730
+ /** Survey title */
5731
+ title: string;
5732
+ /** Description */
5733
+ description: string;
5734
+ /** Questions */
5735
+ questions: SurveyQuestion<T>[];
5736
+ /** Created at */
5737
+ createdAt: number;
5738
+ /** Expires at */
5739
+ expiresAt?: number;
5740
+ /** Is active */
5741
+ active: boolean;
5742
+ }
5743
+ /**
5744
+ * Survey question
5745
+ */
5746
+ interface SurveyQuestion<T = unknown> {
5747
+ /** Question ID */
5748
+ id: string;
5749
+ /** Question text */
5750
+ question: string;
5751
+ /** Question type */
5752
+ type: SurveyQuestionType;
5753
+ /** Options (for choice types) */
5754
+ options?: string[];
5755
+ /** Is required */
5756
+ required: boolean;
5757
+ /** Default answer */
5758
+ defaultAnswer?: T;
5759
+ }
5760
+ /**
5761
+ * Survey question types
5762
+ */
5763
+ type SurveyQuestionType = 'text' | 'single-choice' | 'multiple-choice' | 'rating' | 'scale' | 'boolean' | 'ranking';
5764
+ /**
5765
+ * SurveyResult - Survey result type
5766
+ */
5767
+ interface SurveyResult<T = unknown> {
5768
+ /** Survey ID */
5769
+ surveyId: string;
5770
+ /** Respondent */
5771
+ respondent?: T;
5772
+ /** Answers */
5773
+ answers: Record<string, unknown>;
5774
+ /** Submitted at */
5775
+ submittedAt: number;
5776
+ }
5777
+ /**
5778
+ * FeedbackAnalysis - Analysis of feedback data
5779
+ */
5780
+ interface FeedbackAnalysis<T = unknown> {
5781
+ /** Total responses */
5782
+ totalResponses: number;
5783
+ /** Average rating */
5784
+ averageRating: number;
5785
+ /** Sentiment analysis */
5786
+ sentiment: SentimentResult;
5787
+ /** Common themes */
5788
+ themes: string[];
5789
+ /** Priority summary */
5790
+ prioritySummary: Record<FeaturePriority, number>;
5791
+ /** Category breakdown */
5792
+ categoryBreakdown: Record<string, number>;
5793
+ /** Raw data */
5794
+ rawData?: T[];
5795
+ }
5796
+ /**
5797
+ * Sentiment result
5798
+ */
5799
+ interface SentimentResult {
5800
+ /** Positive percentage */
5801
+ positive: number;
5802
+ /** Neutral percentage */
5803
+ neutral: number;
5804
+ /** Negative percentage */
5805
+ negative: number;
5806
+ /** Overall sentiment */
5807
+ overall: 'positive' | 'neutral' | 'negative';
5808
+ }
5809
+ /**
5810
+ * IssueTemplate - Issue template type
5811
+ */
5812
+ interface IssueTemplate<T = unknown> {
5813
+ /** Template name */
5814
+ name: string;
5815
+ /** Template description */
5816
+ description: string;
5817
+ /** Issue category */
5818
+ category: IssueCategory;
5819
+ /** Template fields */
5820
+ fields: TemplateField<T>[];
5821
+ /** Labels */
5822
+ labels: string[];
5823
+ }
5824
+ /**
5825
+ * Issue category
5826
+ */
5827
+ type IssueCategory = 'bug' | 'feature' | 'documentation' | 'performance' | 'security' | 'question';
5828
+ /**
5829
+ * Template field
5830
+ */
5831
+ interface TemplateField<T = unknown> {
5832
+ /** Field name */
5833
+ name: string;
5834
+ /** Field type */
5835
+ type: 'text' | 'textarea' | 'select' | 'multiselect' | 'checkbox' | 'number';
5836
+ /** Is required */
5837
+ required: boolean;
5838
+ /** Default value */
5839
+ default?: T;
5840
+ /** Options (for select types) */
5841
+ options?: string[];
5842
+ /** Description */
5843
+ description: string;
5844
+ }
5845
+ /**
5846
+ * IssueTrackingConfig - Configuration for issue tracking
5847
+ */
5848
+ interface IssueTrackingConfig {
5849
+ /** Allowed categories */
5850
+ allowedCategories: IssueCategory[];
5851
+ /** Required fields */
5852
+ requiredFields: string[];
5853
+ /** Auto-label rules */
5854
+ autoLabelRules: AutoLabelRule[];
5855
+ /** Template assignments */
5856
+ templateAssignments: Record<IssueCategory, string>;
5857
+ }
5858
+ /**
5859
+ * Auto label rule
5860
+ */
5861
+ interface AutoLabelRule {
5862
+ /** Condition field */
5863
+ field: string;
5864
+ /** Condition value */
5865
+ value: string;
5866
+ /** Label to apply */
5867
+ label: string;
5868
+ }
5869
+ //#endregion
5587
5870
  //#region src/compiler/index.d.ts
5588
5871
  /**
5589
5872
  * Type-Level Compiler Types
@@ -13000,6 +13283,331 @@ interface HelmValuesFile {
13000
13283
  [key: string]: unknown;
13001
13284
  }
13002
13285
  //#endregion
13286
+ //#region src/devtools/index.d.ts
13287
+ /**
13288
+ * Developer Tools Integration
13289
+ *
13290
+ * Tools for IDE and editor integration, including auto-completion,
13291
+ * refactoring, and code actions.
13292
+ */
13293
+ /**
13294
+ * IDEIntegration - IDE integration configuration
13295
+ */
13296
+ interface IDEIntegration<T = unknown> {
13297
+ /** The type being integrated */
13298
+ readonly target: T;
13299
+ /** Supported IDE features */
13300
+ readonly features: IDEFeature[];
13301
+ }
13302
+ /**
13303
+ * IDE features supported
13304
+ */
13305
+ type IDEFeature = 'completion' | 'hover' | 'diagnostics' | 'code-actions' | 'code-lens' | 'refactoring' | 'formatting' | 'navigation' | 'rename' | 'folding';
13306
+ /**
13307
+ * LanguageServer - Language server protocol types
13308
+ */
13309
+ interface LanguageServer<T = unknown> {
13310
+ /** Server capabilities */
13311
+ readonly capabilities: ServerCapabilities;
13312
+ /** Document sync kind */
13313
+ readonly documentSync: TextDocumentSyncKind;
13314
+ /** Completion provider */
13315
+ readonly completionProvider?: CompletionProvider<T>;
13316
+ /** Hover provider */
13317
+ readonly hoverProvider: boolean;
13318
+ /** Code action provider */
13319
+ readonly codeActionProvider: boolean;
13320
+ }
13321
+ /**
13322
+ * Server capabilities
13323
+ */
13324
+ interface ServerCapabilities {
13325
+ /** Completion capabilities */
13326
+ completionProvider?: {
13327
+ triggerCharacters?: string[];
13328
+ };
13329
+ /** Hover capabilities */
13330
+ hoverProvider: boolean;
13331
+ /** Code action capabilities */
13332
+ codeActionProvider: boolean;
13333
+ /** Code lens capabilities */
13334
+ codeLensProvider?: {
13335
+ resolveProvider?: boolean;
13336
+ };
13337
+ /** Rename capabilities */
13338
+ renameProvider: boolean;
13339
+ /** Formatting capabilities */
13340
+ documentFormattingProvider: boolean;
13341
+ }
13342
+ /**
13343
+ * Text document sync kind
13344
+ */
13345
+ type TextDocumentSyncKind = 'none' | 'full' | 'incremental';
13346
+ /**
13347
+ * CodeAction - Code action type
13348
+ */
13349
+ interface CodeAction<T = unknown> {
13350
+ /** Action title */
13351
+ readonly title: string;
13352
+ /** Action kind */
13353
+ readonly kind: CodeActionKind;
13354
+ /** Action diagnostics */
13355
+ readonly diagnostics?: DiagnosticItem[];
13356
+ /** Action edit */
13357
+ readonly edit?: WorkspaceEdit<T>;
13358
+ /** Is preferred */
13359
+ readonly isPreferred?: boolean;
13360
+ }
13361
+ /**
13362
+ * Code action kinds
13363
+ */
13364
+ type CodeActionKind = 'quickfix' | 'refactor' | 'refactor.extract' | 'refactor.inline' | 'refactor.rewrite' | 'source' | 'source.organizeImports' | 'source.fixAll';
13365
+ /**
13366
+ * Diagnostic item
13367
+ */
13368
+ interface DiagnosticItem {
13369
+ /** Message */
13370
+ message: string;
13371
+ /** Severity */
13372
+ severity: DiagnosticSeverity;
13373
+ /** Range */
13374
+ range: TextRange;
13375
+ /** Source */
13376
+ source?: string;
13377
+ /** Code */
13378
+ code?: string | number;
13379
+ }
13380
+ /**
13381
+ * Diagnostic severity
13382
+ */
13383
+ type DiagnosticSeverity = 'error' | 'warning' | 'info' | 'hint';
13384
+ /**
13385
+ * Text range
13386
+ */
13387
+ interface TextRange {
13388
+ /** Start position */
13389
+ start: Position$2;
13390
+ /** End position */
13391
+ end: Position$2;
13392
+ }
13393
+ /**
13394
+ * Position in text
13395
+ */
13396
+ interface Position$2 {
13397
+ /** Line number (0-based) */
13398
+ line: number;
13399
+ /** Character offset (0-based) */
13400
+ character: number;
13401
+ }
13402
+ /**
13403
+ * CodeLens - Code lens type
13404
+ */
13405
+ interface CodeLens<T = unknown> {
13406
+ /** Lens range */
13407
+ readonly range: TextRange;
13408
+ /** Lens command */
13409
+ readonly command?: DevToolsCommand<T>;
13410
+ /** Lens data */
13411
+ readonly data?: T;
13412
+ }
13413
+ /**
13414
+ * DevToolsCommand
13415
+ */
13416
+ interface DevToolsCommand<T = unknown> {
13417
+ /** Command title */
13418
+ title: string;
13419
+ /** Command identifier */
13420
+ command: string;
13421
+ /** Command arguments */
13422
+ arguments?: T[];
13423
+ }
13424
+ /**
13425
+ * WorkspaceEdit
13426
+ */
13427
+ interface WorkspaceEdit<T = unknown> {
13428
+ /** Document changes */
13429
+ changes: Map<string, TextEdit<T>[]>;
13430
+ }
13431
+ /**
13432
+ * TextEdit
13433
+ */
13434
+ interface TextEdit<_T = unknown> {
13435
+ /** Edit range */
13436
+ range: TextRange;
13437
+ /** New text */
13438
+ newText: string;
13439
+ }
13440
+ /**
13441
+ * CompletionItem - Completion item type
13442
+ */
13443
+ interface CompletionItem<T = unknown> {
13444
+ /** Label */
13445
+ label: string;
13446
+ /** Kind */
13447
+ kind: CompletionItemKind;
13448
+ /** Detail */
13449
+ detail?: string;
13450
+ /** Documentation */
13451
+ documentation?: string;
13452
+ /** Insert text */
13453
+ insertText?: string;
13454
+ /** Sort text */
13455
+ sortText?: string;
13456
+ /** Filter text */
13457
+ filterText?: string;
13458
+ /** Data */
13459
+ data?: T;
13460
+ }
13461
+ /**
13462
+ * Completion item kinds
13463
+ */
13464
+ type CompletionItemKind = 'text' | 'method' | 'function' | 'constructor' | 'field' | 'variable' | 'class' | 'interface' | 'module' | 'property' | 'unit' | 'value' | 'enum' | 'keyword' | 'snippet' | 'color' | 'file' | 'reference' | 'type-parameter';
13465
+ /**
13466
+ * CompletionProvider - Completion provider type
13467
+ */
13468
+ interface CompletionProvider<T = unknown> {
13469
+ /** Trigger characters */
13470
+ triggerCharacters?: string[];
13471
+ /** Provide completion items */
13472
+ provideCompletionItems: (document: string, position: Position$2) => CompletionItem<T>[];
13473
+ }
13474
+ /**
13475
+ * SnippetTemplate - Snippet template for completions
13476
+ */
13477
+ interface SnippetTemplate<T = unknown> {
13478
+ /** Template name */
13479
+ name: string;
13480
+ /** Template prefix */
13481
+ prefix: string;
13482
+ /** Template body */
13483
+ body: string[];
13484
+ /** Template description */
13485
+ description: string;
13486
+ /** Template scope */
13487
+ scope?: string;
13488
+ /** Template variables */
13489
+ variables?: SnippetVariable<T>[];
13490
+ }
13491
+ /**
13492
+ * Snippet variable
13493
+ */
13494
+ interface SnippetVariable<T = unknown> {
13495
+ /** Variable name */
13496
+ name: string;
13497
+ /** Default value */
13498
+ default?: T;
13499
+ /** Description */
13500
+ description?: string;
13501
+ /** Choices */
13502
+ choices?: T[];
13503
+ }
13504
+ /**
13505
+ * SmartCompletion - Enhanced completion with context awareness
13506
+ */
13507
+ interface SmartCompletion<T = unknown> {
13508
+ /** Completion context */
13509
+ context: CompletionContext;
13510
+ /** Suggested completions */
13511
+ suggestions: CompletionItem<T>[];
13512
+ /** Confidence score */
13513
+ confidence: number;
13514
+ }
13515
+ /**
13516
+ * Completion context
13517
+ */
13518
+ interface CompletionContext {
13519
+ /** Trigger kind */
13520
+ triggerKind: 'invoked' | 'triggerCharacter' | 'triggerForIncompleteCompletions';
13521
+ /** Trigger character */
13522
+ triggerCharacter?: string;
13523
+ /** Current line text */
13524
+ lineText: string;
13525
+ /** Position in line */
13526
+ position: Position$2;
13527
+ }
13528
+ /**
13529
+ * RefactorAction - Refactoring action type
13530
+ */
13531
+ interface RefactorAction<T = unknown> {
13532
+ /** Action title */
13533
+ title: string;
13534
+ /** Action kind */
13535
+ kind: RefactorKind;
13536
+ /** Applicable range */
13537
+ range: TextRange;
13538
+ /** Action edit */
13539
+ edit?: WorkspaceEdit<T>;
13540
+ /** Is preferred */
13541
+ isPreferred?: boolean;
13542
+ }
13543
+ /**
13544
+ * Refactor kinds
13545
+ */
13546
+ type RefactorKind = 'extract-function' | 'extract-variable' | 'extract-type' | 'inline-function' | 'inline-variable' | 'rename' | 'move' | 'convert' | 'simplify';
13547
+ /**
13548
+ * RefactorSuggestion - Suggested refactoring
13549
+ */
13550
+ interface RefactorSuggestion<T = unknown> {
13551
+ /** Suggestion title */
13552
+ title: string;
13553
+ /** Suggestion description */
13554
+ description: string;
13555
+ /** Applicable refactor actions */
13556
+ actions: RefactorAction<T>[];
13557
+ /** Estimated impact */
13558
+ impact: RefactorImpact;
13559
+ }
13560
+ /**
13561
+ * Refactor impact level
13562
+ */
13563
+ type RefactorImpact = 'low' | 'medium' | 'high' | 'breaking';
13564
+ /**
13565
+ * SafeRefactor - A refactoring that is guaranteed to be safe
13566
+ */
13567
+ type SafeRefactor<T> = RefactorAction<T> & {
13568
+ /** Verified safe */readonly safe: true; /** No breaking changes */
13569
+ readonly breaking: false;
13570
+ };
13571
+ /**
13572
+ * RefactorPreview - Preview of a refactoring before applying
13573
+ */
13574
+ interface RefactorPreview<T = unknown> {
13575
+ /** Original code */
13576
+ original: string;
13577
+ /** Refactored code */
13578
+ refactored: string;
13579
+ /** Changes description */
13580
+ changes: string[];
13581
+ /** Diff */
13582
+ diff: DiffLine[];
13583
+ /** Safety assessment */
13584
+ safety: RefactorSafetyAssessment<T>;
13585
+ }
13586
+ /**
13587
+ * Diff line
13588
+ */
13589
+ interface DiffLine {
13590
+ /** Line type */
13591
+ type: 'add' | 'remove' | 'unchanged';
13592
+ /** Line content */
13593
+ content: string;
13594
+ /** Line number */
13595
+ lineNumber: number;
13596
+ }
13597
+ /**
13598
+ * Refactor safety assessment
13599
+ */
13600
+ interface RefactorSafetyAssessment<_T = unknown> {
13601
+ /** Is the refactor safe */
13602
+ safe: boolean;
13603
+ /** Potential issues */
13604
+ issues: string[];
13605
+ /** Affected files */
13606
+ affectedFiles: string[];
13607
+ /** Risk level */
13608
+ risk: 'none' | 'low' | 'medium' | 'high';
13609
+ }
13610
+ //#endregion
13003
13611
  //#region src/distributed/index.d.ts
13004
13612
  /**
13005
13613
  * Distributed Systems Types
@@ -14372,31 +14980,321 @@ interface DocAccessibility {
14372
14980
  mobileFriendly: boolean;
14373
14981
  }
14374
14982
  //#endregion
14375
- //#region src/ecosystem/prisma.d.ts
14983
+ //#region src/docgen-v2/index.d.ts
14376
14984
  /**
14377
- * Prisma create input type
14985
+ * Documentation Generation (v2)
14378
14986
  *
14379
- * @example
14380
- * ```ts
14381
- * type CreateInput = PrismaCreateInput<User>
14382
- * // { name: string; email: string; age?: number }
14383
- * ```
14987
+ * Enhanced documentation generation utilities for v2.0.0,
14988
+ * including JSDoc generation, API documentation, and type documentation.
14384
14989
  */
14385
- type PrismaCreateInput<T> = { [K in keyof T as undefined extends T[K] ? never : K]: T[K] } & { [K in keyof T as undefined extends T[K] ? K : never]?: T[K] };
14386
- //#endregion
14387
- //#region src/ecosystem/react.d.ts
14388
14990
  /**
14389
- * React component props utilities
14390
- *
14391
- * These types help work with React component props.
14392
- * Note: React is an optional peer dependency.
14991
+ * TypeDocumentation - Type documentation with metadata
14393
14992
  */
14394
- /**
14395
- * Extract props from a React component
14396
- *
14397
- * @example
14398
- * ```tsx
14399
- * import type { ComponentProps } from 'uni-types'
14993
+ interface TypeDocumentation$1<T = unknown> {
14994
+ /** The documented type */
14995
+ type: T;
14996
+ /** Type name */
14997
+ name: string;
14998
+ /** Description */
14999
+ description?: string;
15000
+ /** Examples */
15001
+ examples?: DocExample<T>[];
15002
+ /** Since version */
15003
+ since?: string;
15004
+ /** Deprecation info */
15005
+ deprecated?: DeprecationInfoV2;
15006
+ /** See also */
15007
+ see?: string[];
15008
+ /** Tags */
15009
+ tags?: string[];
15010
+ }
15011
+ /**
15012
+ * Deprecation info
15013
+ */
15014
+ interface DeprecationInfoV2 {
15015
+ /** Is deprecated */
15016
+ deprecated: boolean;
15017
+ /** Deprecation message */
15018
+ message?: string;
15019
+ /** Replacement type */
15020
+ replacement?: string;
15021
+ /** Removal version */
15022
+ removedIn?: string;
15023
+ }
15024
+ /**
15025
+ * AutoDoc - Auto-generated documentation
15026
+ */
15027
+ interface AutoDoc<T = unknown> {
15028
+ /** The type being documented */
15029
+ type: T;
15030
+ /** Generated description */
15031
+ description: string;
15032
+ /** Generated examples */
15033
+ examples: string[];
15034
+ /** Inferred usage patterns */
15035
+ patterns: UsagePattern[];
15036
+ /** Related types */
15037
+ related: string[];
15038
+ }
15039
+ /**
15040
+ * Usage pattern
15041
+ */
15042
+ interface UsagePattern {
15043
+ /** Pattern name */
15044
+ name: string;
15045
+ /** Pattern code */
15046
+ code: string;
15047
+ /** Pattern description */
15048
+ description: string;
15049
+ }
15050
+ /**
15051
+ * DocTemplate - Documentation template
15052
+ */
15053
+ interface DocTemplate<T = unknown> {
15054
+ /** Template name */
15055
+ name: string;
15056
+ /** Template content */
15057
+ content: string;
15058
+ /** Template variables */
15059
+ variables: TemplateVariable$1<T>[];
15060
+ /** Template type */
15061
+ type: DocTemplateType;
15062
+ }
15063
+ /**
15064
+ * Template variable
15065
+ */
15066
+ interface TemplateVariable$1<T = unknown> {
15067
+ /** Variable name */
15068
+ name: string;
15069
+ /** Variable type */
15070
+ type: string;
15071
+ /** Default value */
15072
+ default?: T;
15073
+ /** Description */
15074
+ description: string;
15075
+ /** Required */
15076
+ required: boolean;
15077
+ }
15078
+ /**
15079
+ * Documentation template types
15080
+ */
15081
+ type DocTemplateType = 'api' | 'guide' | 'tutorial' | 'reference' | 'example';
15082
+ /**
15083
+ * DocExample - Documentation example
15084
+ */
15085
+ interface DocExample<T = unknown> {
15086
+ /** Example title */
15087
+ title: string;
15088
+ /** Example code */
15089
+ code: string;
15090
+ /** Example description */
15091
+ description?: string;
15092
+ /** Expected result */
15093
+ result?: T;
15094
+ /** Language */
15095
+ language?: string;
15096
+ }
15097
+ /**
15098
+ * GenerateJSDoc - JSDoc generation result
15099
+ */
15100
+ interface GenerateJSDoc<T = unknown> {
15101
+ /** JSDoc comment text */
15102
+ comment: string;
15103
+ /** JSDoc tags */
15104
+ tags: JSDocTagV2[];
15105
+ /** The documented type */
15106
+ type: T;
15107
+ }
15108
+ /**
15109
+ * JSDocTemplate - JSDoc template for generation
15110
+ */
15111
+ interface JSDocTemplate<_T = unknown> {
15112
+ /** Template name */
15113
+ name: string;
15114
+ /** Description template */
15115
+ description: string;
15116
+ /** Tags to include */
15117
+ tags: JSDocTagV2[];
15118
+ /** Example template */
15119
+ example?: string;
15120
+ }
15121
+ /**
15122
+ * JSDocTagV2 - JSDoc tag
15123
+ */
15124
+ interface JSDocTagV2 {
15125
+ /** Tag name */
15126
+ tag: string;
15127
+ /** Tag value */
15128
+ value?: string;
15129
+ /** Tag type (for @param, @returns, etc.) */
15130
+ type?: string;
15131
+ /** Tag description */
15132
+ description?: string;
15133
+ /** Is optional */
15134
+ optional?: boolean;
15135
+ }
15136
+ /**
15137
+ * APIDocumentation - API documentation type
15138
+ */
15139
+ interface APIDocumentation<T = unknown> {
15140
+ /** API name */
15141
+ name: string;
15142
+ /** API version */
15143
+ version: string;
15144
+ /** API description */
15145
+ description: string;
15146
+ /** Endpoints */
15147
+ endpoints: EndpointDoc<T>[];
15148
+ /** Authentication */
15149
+ authentication?: AuthDoc;
15150
+ /** Base URL */
15151
+ baseUrl?: string;
15152
+ }
15153
+ /**
15154
+ * EndpointDoc - Endpoint documentation
15155
+ */
15156
+ interface EndpointDoc<T = unknown> {
15157
+ /** HTTP method */
15158
+ method: string;
15159
+ /** Path */
15160
+ path: string;
15161
+ /** Description */
15162
+ description: string;
15163
+ /** Parameters */
15164
+ parameters: ParameterDoc<T>[];
15165
+ /** Request body */
15166
+ requestBody?: RequestBodyDoc<T>;
15167
+ /** Responses */
15168
+ responses: ResponseDoc<T>[];
15169
+ /** Tags */
15170
+ tags: string[];
15171
+ /** Deprecated */
15172
+ deprecated?: boolean;
15173
+ }
15174
+ /**
15175
+ * ParameterDoc - Parameter documentation
15176
+ */
15177
+ interface ParameterDoc<T = unknown> {
15178
+ /** Parameter name */
15179
+ name: string;
15180
+ /** Parameter location */
15181
+ in: ParamLocation;
15182
+ /** Description */
15183
+ description: string;
15184
+ /** Is required */
15185
+ required: boolean;
15186
+ /** Parameter type */
15187
+ type: string;
15188
+ /** Default value */
15189
+ default?: T;
15190
+ /** Enum values */
15191
+ enum?: T[];
15192
+ /** Example value */
15193
+ example?: T;
15194
+ /** Is deprecated */
15195
+ deprecated?: boolean;
15196
+ }
15197
+ /**
15198
+ * Parameter location
15199
+ */
15200
+ type ParamLocation = 'path' | 'query' | 'header' | 'cookie';
15201
+ /**
15202
+ * Request body documentation
15203
+ */
15204
+ interface RequestBodyDoc<T = unknown> {
15205
+ /** Description */
15206
+ description: string;
15207
+ /** Content type */
15208
+ contentType: string;
15209
+ /** Schema */
15210
+ schema: T;
15211
+ /** Is required */
15212
+ required: boolean;
15213
+ }
15214
+ /**
15215
+ * Response documentation
15216
+ */
15217
+ interface ResponseDoc<T = unknown> {
15218
+ /** Status code */
15219
+ statusCode: number;
15220
+ /** Description */
15221
+ description: string;
15222
+ /** Content type */
15223
+ contentType?: string;
15224
+ /** Schema */
15225
+ schema?: T;
15226
+ }
15227
+ /**
15228
+ * AuthDoc - Authentication documentation
15229
+ */
15230
+ interface AuthDoc {
15231
+ /** Auth type */
15232
+ type: 'bearer' | 'basic' | 'apikey' | 'oauth2';
15233
+ /** Description */
15234
+ description: string;
15235
+ /** Header name */
15236
+ header?: string;
15237
+ /** Query parameter name */
15238
+ queryParam?: string;
15239
+ }
15240
+ /**
15241
+ * DocRenderOptions - Options for rendering documentation
15242
+ */
15243
+ interface DocRenderOptions {
15244
+ /** Output format */
15245
+ format: DocOutputFormat;
15246
+ /** Include examples */
15247
+ includeExamples: boolean;
15248
+ /** Include deprecated items */
15249
+ includeDeprecated: boolean;
15250
+ /** Include private items */
15251
+ includePrivate: boolean;
15252
+ /** Sort order */
15253
+ sortOrder: 'alphabetical' | 'source' | 'visibility';
15254
+ }
15255
+ /**
15256
+ * Documentation output formats
15257
+ */
15258
+ type DocOutputFormat = 'markdown' | 'html' | 'json' | 'yaml';
15259
+ /**
15260
+ * DocRenderResult - Result of rendering documentation
15261
+ */
15262
+ interface DocRenderResult {
15263
+ /** Rendered content */
15264
+ content: string;
15265
+ /** Output format */
15266
+ format: DocOutputFormat;
15267
+ /** Number of documented items */
15268
+ itemCount: number;
15269
+ /** Warnings */
15270
+ warnings: string[];
15271
+ }
15272
+ //#endregion
15273
+ //#region src/ecosystem/prisma.d.ts
15274
+ /**
15275
+ * Prisma create input type
15276
+ *
15277
+ * @example
15278
+ * ```ts
15279
+ * type CreateInput = PrismaCreateInput<User>
15280
+ * // { name: string; email: string; age?: number }
15281
+ * ```
15282
+ */
15283
+ type PrismaCreateInput<T> = { [K in keyof T as undefined extends T[K] ? never : K]: T[K] } & { [K in keyof T as undefined extends T[K] ? K : never]?: T[K] };
15284
+ //#endregion
15285
+ //#region src/ecosystem/react.d.ts
15286
+ /**
15287
+ * React component props utilities
15288
+ *
15289
+ * These types help work with React component props.
15290
+ * Note: React is an optional peer dependency.
15291
+ */
15292
+ /**
15293
+ * Extract props from a React component
15294
+ *
15295
+ * @example
15296
+ * ```tsx
15297
+ * import type { ComponentProps } from 'uni-types'
14400
15298
  *
14401
15299
  * type ButtonProps = ComponentProps<'button'>
14402
15300
  * type InputProps = ComponentProps<'input'>
@@ -14421,6 +15319,129 @@ declare namespace JSX {
14421
15319
  type IntrinsicElements = Record<string, unknown>;
14422
15320
  }
14423
15321
  //#endregion
15322
+ //#region src/effect/index.d.ts
15323
+ /**
15324
+ * Effect System Preview
15325
+ *
15326
+ * Preview of the v2.0.0 effect system for tracking
15327
+ * side effects at the type level.
15328
+ */
15329
+ /**
15330
+ * EffectV2 - Core effect type (v2 preview)
15331
+ * Represents a computation that may produce side effects
15332
+ */
15333
+ interface EffectV2<T, E extends unknown[] = []> {
15334
+ /** The result type */
15335
+ readonly _output: T;
15336
+ /** The effects produced */
15337
+ readonly _effects: E;
15338
+ }
15339
+ /**
15340
+ * PureV2 - A computation with no side effects
15341
+ */
15342
+ type PureV2<T> = EffectV2<T, []>;
15343
+ /**
15344
+ * IOV2 - A computation that may perform IO
15345
+ */
15346
+ type IOV2<T> = EffectV2<T, ['io']>;
15347
+ /**
15348
+ * TrackEffect - Track an effect on a computation
15349
+ */
15350
+ type TrackEffect<T, E> = T extends EffectV2<infer R, infer Es> ? EffectV2<R, [...Es, E]> : EffectV2<T, [E]>;
15351
+ /**
15352
+ * EffectList - Get the list of effects from a computation
15353
+ */
15354
+ type EffectList<T> = T extends EffectV2<infer _R, infer Es> ? Es : [];
15355
+ /**
15356
+ * EffectSafe - Check if a computation is effect-safe (no side effects)
15357
+ */
15358
+ type EffectSafe<T> = T extends PureV2<infer _R> ? true : false;
15359
+ /**
15360
+ * EffectfulV2 - Mark a type as having effects
15361
+ */
15362
+ type EffectfulV2<T, E extends unknown[] = ['unknown']> = EffectV2<T, E>;
15363
+ /**
15364
+ * HandlerV2 - Effect handler type (v2 preview)
15365
+ */
15366
+ interface HandlerV2<E, T = unknown> {
15367
+ /** The effect being handled */
15368
+ readonly _effect: E;
15369
+ /** The result type */
15370
+ readonly _result: T;
15371
+ /** Handle the effect */
15372
+ handle: (effect: E) => T;
15373
+ }
15374
+ /**
15375
+ * HandleV2 - Handle an effect in a computation
15376
+ */
15377
+ type HandleV2<T, E> = T extends EffectV2<infer R, infer Es> ? EffectV2<R, Exclude<Es, E>> : never;
15378
+ /**
15379
+ * HandleAllV2 - Handle all effects in a computation
15380
+ */
15381
+ type HandleAllV2<T> = T extends EffectV2<infer R, infer _Es> ? R : never;
15382
+ /**
15383
+ * EffectMap - Map over the result of an effectful computation
15384
+ */
15385
+ type EffectMap<T, F extends (value: unknown) => unknown> = T extends EffectV2<infer _R, infer Es> ? EffectV2<ReturnType<F> extends infer U ? U : never, Es> : never;
15386
+ /**
15387
+ * EffectFlatMap - FlatMap over an effectful computation
15388
+ */
15389
+ type EffectFlatMap<T, F extends (value: unknown) => unknown> = T extends EffectV2<infer _R, infer Es1> ? ReturnType<F> extends EffectV2<infer R2, infer Es2> ? EffectV2<R2, [...Es1, ...Es2]> : never : never;
15390
+ /**
15391
+ * EffectSequence - Sequence multiple effectful computations
15392
+ */
15393
+ type EffectSequence<T extends unknown[]> = T extends [EffectV2<infer R, infer Es>, ...infer Rest] ? [R, ...EffectSequenceResult<Rest, Es>] : [];
15394
+ /**
15395
+ * Helper type for EffectSequence
15396
+ */
15397
+ type EffectSequenceResult<T extends unknown[], Es extends unknown[]> = T extends [EffectV2<infer R, infer Es2>, ...infer Rest] ? [R, ...EffectSequenceResult<Rest, [...Es, ...Es2]>] : [];
15398
+ /**
15399
+ * Common effect types
15400
+ */
15401
+ type EffectTypeV2 = 'io' | 'async' | 'state' | 'error' | 'resource' | 'time' | 'network' | 'console' | 'random' | 'dom';
15402
+ /**
15403
+ * IOEffect - IO side effect marker
15404
+ */
15405
+ type IOEffect = 'io';
15406
+ /**
15407
+ * AsyncEffect - Async side effect marker
15408
+ */
15409
+ type AsyncEffect = 'async';
15410
+ /**
15411
+ * StateEffect - State side effect marker
15412
+ */
15413
+ interface StateEffect<S = unknown> {
15414
+ state: S;
15415
+ }
15416
+ /**
15417
+ * ErrorEffect - Error side effect marker
15418
+ */
15419
+ interface ErrorEffect<E = unknown> {
15420
+ error: E;
15421
+ }
15422
+ /**
15423
+ * EffectRuntime - Runtime configuration for effects
15424
+ */
15425
+ interface EffectRuntime {
15426
+ /** Enabled effect types */
15427
+ enabledEffects: EffectTypeV2[];
15428
+ /** Effect handlers */
15429
+ handlers: Map<string, HandlerV2<unknown>>;
15430
+ /** Whether to track effects */
15431
+ trackEffects: boolean;
15432
+ }
15433
+ /**
15434
+ * EffectConfig - Configuration for effect system
15435
+ */
15436
+ interface EffectConfig {
15437
+ /** Strict mode - all effects must be handled */
15438
+ strict: boolean;
15439
+ /** Log unhandled effects */
15440
+ logUnhandled: boolean;
15441
+ /** Maximum effect chain depth */
15442
+ maxDepth: number;
15443
+ }
15444
+ //#endregion
14424
15445
  //#region src/enhanced-error/index.d.ts
14425
15446
  /**
14426
15447
  * Enhanced Error Messages (v1.11.0)
@@ -14520,7 +15541,7 @@ interface DiagnosticInfo {
14520
15541
  /** Diagnostic message */
14521
15542
  message: string;
14522
15543
  /** Diagnostic severity */
14523
- severity: DiagnosticSeverity;
15544
+ severity: DiagnosticSeverity$1;
14524
15545
  /** Source */
14525
15546
  source?: string;
14526
15547
  /** Related information */
@@ -14529,7 +15550,7 @@ interface DiagnosticInfo {
14529
15550
  /**
14530
15551
  * Diagnostic severity levels
14531
15552
  */
14532
- type DiagnosticSeverity = 'error' | 'warning' | 'info' | 'hint';
15553
+ type DiagnosticSeverity$1 = 'error' | 'warning' | 'info' | 'hint';
14533
15554
  /**
14534
15555
  * Diagnostic code type
14535
15556
  */
@@ -14543,7 +15564,7 @@ interface DiagnosticMessage<T> {
14543
15564
  /** Message text */
14544
15565
  text: string;
14545
15566
  /** Message category */
14546
- category: DiagnosticSeverity;
15567
+ category: DiagnosticSeverity$1;
14547
15568
  }
14548
15569
  /**
14549
15570
  * Related diagnostic
@@ -14799,7 +15820,7 @@ interface ReportedWarning {
14799
15820
  /** Warning message */
14800
15821
  message: string;
14801
15822
  /** Severity */
14802
- severity: DiagnosticSeverity;
15823
+ severity: DiagnosticSeverity$1;
14803
15824
  /** Location */
14804
15825
  location?: DiagnosticLocation;
14805
15826
  /** Suggestions */
@@ -14831,7 +15852,7 @@ interface ErrorFilter {
14831
15852
  /** Filter by category */
14832
15853
  category?: ErrorCategory[];
14833
15854
  /** Filter by severity */
14834
- severity?: DiagnosticSeverity[];
15855
+ severity?: DiagnosticSeverity$1[];
14835
15856
  /** Filter by code */
14836
15857
  code?: DiagnosticCode[];
14837
15858
  /** Exclude codes */
@@ -16027,6 +17048,173 @@ type EventHandlerMap<T extends EventMap$1> = { [K in keyof T]?: EventHandler<T[K
16027
17048
  */
16028
17049
  type WildcardHandler<T extends EventMap$1> = (type: keyof T, event: Event$1<T[keyof T]>) => void | Promise<void>;
16029
17050
  //#endregion
17051
+ //#region src/experimental/index.d.ts
17052
+ /**
17053
+ * Experimental v2 Features (Early Access)
17054
+ *
17055
+ * Type definitions for experimental, unstable, preview, and beta features
17056
+ * serving as early access to v2.0.0 capabilities.
17057
+ */
17058
+ /**
17059
+ * Experimental - marks a type as experimental (may change or be removed)
17060
+ */
17061
+ type Experimental<T> = T & {
17062
+ __experimental__: true;
17063
+ };
17064
+ /**
17065
+ * Unstable - marks a type as unstable (API not finalized)
17066
+ */
17067
+ type Unstable<T> = T & {
17068
+ __unstable__: true;
17069
+ };
17070
+ /**
17071
+ * Preview - marks a type as a preview feature
17072
+ */
17073
+ type Preview<T> = T & {
17074
+ __preview__: true;
17075
+ };
17076
+ /**
17077
+ * Beta - marks a type as beta (mostly stable but may have issues)
17078
+ */
17079
+ type Beta<T> = T & {
17080
+ __beta__: true;
17081
+ };
17082
+ /**
17083
+ * V2_Preview - preview of v2.0.0 feature
17084
+ */
17085
+ type V2_Preview<T> = T & {
17086
+ __v2_preview__: true;
17087
+ };
17088
+ /**
17089
+ * V2_Experimental - experimental v2.0.0 feature
17090
+ */
17091
+ type V2_Experimental<T> = T & {
17092
+ __v2_experimental__: true;
17093
+ };
17094
+ /**
17095
+ * V2_Alpha - alpha version of v2.0.0 feature
17096
+ */
17097
+ type V2_Alpha<T> = T & {
17098
+ __v2_alpha__: true;
17099
+ };
17100
+ /**
17101
+ * V2_Beta - beta version of v2.0.0 feature
17102
+ */
17103
+ type V2_Beta<T> = T & {
17104
+ __v2_beta__: true;
17105
+ };
17106
+ /**
17107
+ * ExperimentalFeatureFlag - type-level feature flag (experimental)
17108
+ */
17109
+ type ExperimentalFeatureFlag<T, Flag extends string = string> = T & {
17110
+ __flag__: Flag;
17111
+ };
17112
+ /**
17113
+ * FlaggedFeature - feature with an associated flag
17114
+ */
17115
+ type FlaggedFeature<T, Flag extends string> = T & {
17116
+ __flag__: Flag;
17117
+ __enabled__: boolean;
17118
+ };
17119
+ /**
17120
+ * FeatureGate - gates access to a feature based on a condition
17121
+ */
17122
+ type FeatureGate<T, Condition extends boolean> = Condition extends true ? T : never;
17123
+ /**
17124
+ * ConditionalFeature - feature that is conditionally available
17125
+ */
17126
+ type ConditionalFeature<T, Condition extends boolean> = Condition extends true ? T : never;
17127
+ /**
17128
+ * TryFeature - try an experimental feature (returns T or never if unavailable)
17129
+ */
17130
+ type TryFeature<T, Available extends boolean = true> = Available extends true ? T : never;
17131
+ /**
17132
+ * OptInFeature - feature that requires opt-in
17133
+ */
17134
+ type OptInFeature<T, OptedIn extends boolean = false> = OptedIn extends true ? T : never;
17135
+ /**
17136
+ * ExperimentalAPI - marks an entire API as experimental
17137
+ */
17138
+ interface ExperimentalAPI<T> {
17139
+ /** The experimental feature */
17140
+ feature: T;
17141
+ /** Stability level */
17142
+ stability: StabilityLevel;
17143
+ /** Since version */
17144
+ sinceVersion: string;
17145
+ /** Feedback URL */
17146
+ feedbackUrl?: string;
17147
+ }
17148
+ /**
17149
+ * PreviewAPI - marks an entire API as preview
17150
+ */
17151
+ interface PreviewAPI<T> {
17152
+ /** The preview feature */
17153
+ feature: T;
17154
+ /** Preview status */
17155
+ status: 'preview';
17156
+ /** Expected stable version */
17157
+ expectedStableVersion: string;
17158
+ }
17159
+ /**
17160
+ * StabilityLevel - represents the stability level of a feature
17161
+ */
17162
+ type StabilityLevel = 'stable' | 'beta' | 'alpha' | 'experimental';
17163
+ /**
17164
+ * StableFeature - a stable, production-ready feature
17165
+ */
17166
+ type StableFeature<T> = T & {
17167
+ __stability__: 'stable';
17168
+ };
17169
+ /**
17170
+ * BetaFeature - a beta feature (mostly stable)
17171
+ */
17172
+ type BetaFeature<T> = T & {
17173
+ __stability__: 'beta';
17174
+ };
17175
+ /**
17176
+ * AlphaFeature - an alpha feature (may have breaking changes)
17177
+ */
17178
+ type AlphaFeature<T> = T & {
17179
+ __stability__: 'alpha';
17180
+ };
17181
+ /**
17182
+ * ExperimentalFeature - an experimental feature (highly unstable)
17183
+ */
17184
+ type ExperimentalFeature<T> = T & {
17185
+ __stability__: 'experimental';
17186
+ };
17187
+ /**
17188
+ * FeatureMetadata - metadata about a feature's stability
17189
+ */
17190
+ interface FeatureMetadata {
17191
+ /** Feature name */
17192
+ name: string;
17193
+ /** Stability level */
17194
+ stability: StabilityLevel;
17195
+ /** Version introduced */
17196
+ introducedIn: string;
17197
+ /** Version where feature becomes stable */
17198
+ stableIn?: string;
17199
+ /** Whether the feature is deprecated */
17200
+ deprecated?: boolean;
17201
+ /** Replacement if deprecated */
17202
+ replacement?: string;
17203
+ }
17204
+ /**
17205
+ * FeatureRegistry - registry of features and their stability
17206
+ */
17207
+ interface FeatureRegistry {
17208
+ /** Registered features */
17209
+ features: Record<string, FeatureMetadata>;
17210
+ /** Get feature by name */
17211
+ get: (name: string) => FeatureMetadata | undefined;
17212
+ /** Check if feature is stable */
17213
+ isStable: (name: string) => boolean;
17214
+ /** Check if feature is enabled */
17215
+ isEnabled: (name: string) => boolean;
17216
+ }
17217
+ //#endregion
16030
17218
  //#region src/filesystem/index.d.ts
16031
17219
  /**
16032
17220
  * Type-Level File System (v1.8.0)
@@ -19620,6 +20808,116 @@ interface Just<T> {
19620
20808
  readonly value: T;
19621
20809
  }
19622
20810
  //#endregion
20811
+ //#region src/hkt-v2/index.d.ts
20812
+ /**
20813
+ * Higher-Kinded Types (HKT) Preview
20814
+ *
20815
+ * Early implementation of higher-kinded types for v2.0.0,
20816
+ * providing type-level abstraction over type constructors.
20817
+ */
20818
+ /**
20819
+ * HKTV2 - Higher-kinded type primitive (v2 preview)
20820
+ * Represents a type constructor applied to a type
20821
+ */
20822
+ type HKTV2<F, A> = F extends {
20823
+ _type: infer _R;
20824
+ } ? {
20825
+ _type: A;
20826
+ _kind: F;
20827
+ } : {
20828
+ _type: A;
20829
+ _kind: F;
20830
+ };
20831
+ /**
20832
+ * KindV2 - Kind type for v2.0.0
20833
+ * Represents the "kind" of a type constructor
20834
+ */
20835
+ type KindV2<F, A> = F extends ((...args: [A]) => infer R) ? R : F extends {
20836
+ _type: unknown;
20837
+ } ? Omit<F, '_type'> & {
20838
+ _type: A;
20839
+ } : never;
20840
+ /**
20841
+ * ApplyV2 - Apply a type constructor to a type argument
20842
+ */
20843
+ type ApplyV2<F, A> = F extends ((...args: [A]) => infer R) ? R : F extends {
20844
+ _apply: (a: A) => infer R;
20845
+ } ? R : never;
20846
+ /**
20847
+ * TypeConstructorV2 - Represents a type-level constructor
20848
+ */
20849
+ interface TypeConstructorV2<F = unknown> {
20850
+ /** The constructor's kind */
20851
+ readonly _kind: F;
20852
+ }
20853
+ /**
20854
+ * ConstructV2 - Construct a type from a constructor and arguments
20855
+ */
20856
+ type ConstructV2<F, Args extends unknown[]> = F extends ((...args: Args) => infer R) ? R : F extends {
20857
+ _construct: (...args: Args) => infer R;
20858
+ } ? R : never;
20859
+ /**
20860
+ * FunctorV2 - Functor type class (v2 preview)
20861
+ * A type that can be mapped over
20862
+ */
20863
+ interface FunctorV2<F> {
20864
+ /** The functor's kind */
20865
+ readonly _kind: F;
20866
+ }
20867
+ /**
20868
+ * FunctorMap - Type-level map operation
20869
+ */
20870
+ type FunctorMap<F, A, B> = HKTV2<F, A> extends unknown ? HKTV2<F, B> : never;
20871
+ /**
20872
+ * MonadV2 - Monad type class (v2 preview)
20873
+ * A type that supports flatMap/chain operations
20874
+ */
20875
+ type MonadV2<M> = FunctorV2<M> & {
20876
+ /** The monad's kind */readonly _monad: true;
20877
+ };
20878
+ /**
20879
+ * MonadPure - Type-level pure/return operation
20880
+ */
20881
+ type MonadPure<M, A> = HKTV2<M, A>;
20882
+ /**
20883
+ * MonadFlatten - Type-level flatten/join operation
20884
+ */
20885
+ type MonadFlatten<M, A> = HKTV2<M, HKTV2<M, A>> extends unknown ? HKTV2<M, A> : never;
20886
+ /**
20887
+ * MonadChain - Type-level chain/flatMap operation
20888
+ */
20889
+ type MonadChain<M, A, B> = HKTV2<M, A> extends unknown ? HKTV2<M, B> : never;
20890
+ /**
20891
+ * ApplicativeV2 - Applicative functor (v2 preview)
20892
+ */
20893
+ type ApplicativeV2<F> = FunctorV2<F> & {
20894
+ /** The applicative's kind */readonly _applicative: true;
20895
+ };
20896
+ /**
20897
+ * ApplicativeLift2 - Lift a binary function
20898
+ */
20899
+ type ApplicativeLift2<F, A, B, C> = (f: (a: A, b: B) => C, fa: HKTV2<F, A>, fb: HKTV2<F, B>) => HKTV2<F, C>;
20900
+ /**
20901
+ * HKTIdentity - Identity higher-kinded type
20902
+ */
20903
+ type HKTIdentity<A> = A;
20904
+ /**
20905
+ * HKTConst - Constant higher-kinded type
20906
+ */
20907
+ type HKTConst<A, _B = unknown> = A;
20908
+ /**
20909
+ * HKTCompose - Compose two higher-kinded types
20910
+ */
20911
+ type HKTCompose<F, G, A> = HKTV2<F, HKTV2<G, A>>;
20912
+ /**
20913
+ * HKTFlip - Flip the type arguments of a higher-kinded type
20914
+ */
20915
+ type HKTFlip<F, A, B> = HKTV2<F, B> extends HKTV2<F, infer _R> ? HKTV2<F, A> : never;
20916
+ /**
20917
+ * HKTPartial - Partial application of a higher-kinded type
20918
+ */
20919
+ type HKTPartial<F, A, B = unknown> = HKTV2<F, [A, B]>;
20920
+ //#endregion
19623
20921
  //#region src/http/index.d.ts
19624
20922
  /**
19625
20923
  * Type-level HTTP and API utilities
@@ -20849,16 +22147,7 @@ interface InferFunctionShape<T extends (...args: unknown[]) => unknown> {
20849
22147
  * type FestType = ToTypeFest<{ a: string; b?: number }>
20850
22148
  * ```
20851
22149
  */
20852
- type ToTypeFest<T> = { [K in keyof T]: T[K] };
20853
- /**
20854
- * Convert type-fest to uni-types format
20855
- *
20856
- * @example
20857
- * ```ts
20858
- * type UniType = FromTypeFest<{ a: string }>
20859
- * ```
20860
- */
20861
- type FromTypeFest<T> = { [K in keyof T]: T[K] };
22150
+ type ToTypeFest$1<T> = { [K in keyof T]: T[K] };
20862
22151
  /**
20863
22152
  * type-fest CamelCase mapping
20864
22153
  *
@@ -20887,16 +22176,7 @@ type TypeFestSnakeCase<S extends string> = S extends `${infer First}${infer Rest
20887
22176
  * type ToolbeltType = ToTsToolbelt<{ a: string }>
20888
22177
  * ```
20889
22178
  */
20890
- type ToTsToolbelt<T> = { [K in keyof T]: T[K] };
20891
- /**
20892
- * Convert ts-toolbelt to uni-types format
20893
- *
20894
- * @example
20895
- * ```ts
20896
- * type UniType = FromTsToolbelt<{ a: string }>
20897
- * ```
20898
- */
20899
- type FromTsToolbelt<T> = { [K in keyof T]: T[K] };
22179
+ type ToTsToolbelt$1<T> = { [K in keyof T]: T[K] };
20900
22180
  /**
20901
22181
  * ts-toolbelt Union.Pick equivalent
20902
22182
  *
@@ -20962,24 +22242,6 @@ type UtilityDeepPartial<T> = T extends object ? { [K in keyof T]?: UtilityDeepPa
20962
22242
  * ```
20963
22243
  */
20964
22244
  type UtilityDeepReadonly<T> = T extends object ? { readonly [K in keyof T]: UtilityDeepReadonly<T[K]> } : T;
20965
- /**
20966
- * Convert type to specific format
20967
- *
20968
- * @example
20969
- * ```ts
20970
- * type Fest = ConvertTo<{ a: string }, 'type-fest'>
20971
- * ```
20972
- */
20973
- type ConvertTo<T, Format extends 'type-fest' | 'ts-toolbelt' | 'utility-types'> = Format extends 'type-fest' ? ToTypeFest<T> : Format extends 'ts-toolbelt' ? ToTsToolbelt<T> : Format extends 'utility-types' ? ToUtilityTypes<T> : T;
20974
- /**
20975
- * Convert type from specific format
20976
- *
20977
- * @example
20978
- * ```ts
20979
- * type Uni = ConvertFrom<{ a: string }, 'type-fest'>
20980
- * ```
20981
- */
20982
- type ConvertFrom<T, Format extends 'type-fest' | 'ts-toolbelt' | 'utility-types'> = Format extends 'type-fest' ? FromTypeFest<T> : Format extends 'ts-toolbelt' ? FromTsToolbelt<T> : Format extends 'utility-types' ? FromUtilityTypes<T> : T;
20983
22245
  /**
20984
22246
  * Type conversion map
20985
22247
  *
@@ -20989,8 +22251,8 @@ type ConvertFrom<T, Format extends 'type-fest' | 'ts-toolbelt' | 'utility-types'
20989
22251
  * ```
20990
22252
  */
20991
22253
  interface ConversionMap<T> {
20992
- 'type-fest': ToTypeFest<T>;
20993
- 'ts-toolbelt': ToTsToolbelt<T>;
22254
+ 'type-fest': ToTypeFest$1<T>;
22255
+ 'ts-toolbelt': ToTsToolbelt$1<T>;
20994
22256
  'utility-types': ToUtilityTypes<T>;
20995
22257
  'uni-types': T;
20996
22258
  }
@@ -21047,41 +22309,252 @@ type CompatibleKeys<T, U> = keyof T & keyof U;
21047
22309
  * type Keys = IncompatibleKeys<{ a: string; b: number }, { a: string }>
21048
22310
  * ```
21049
22311
  */
21050
- type IncompatibleKeys<T, U> = Exclude<keyof T, keyof U> | Exclude<keyof U, keyof T>;
22312
+ type IncompatibleKeys<T, U> = Exclude<keyof T, keyof U> | Exclude<keyof U, keyof T>;
22313
+ /**
22314
+ * Type compatibility report
22315
+ *
22316
+ * @example
22317
+ * ```ts
22318
+ * type Report = CompatibilityReport<{ a: string }, { a: number }>
22319
+ * ```
22320
+ */
22321
+ interface CompatibilityReport<T, U> {
22322
+ compatible: IsCompatible<T, U>;
22323
+ compatibleKeys: CompatibleKeys<T, U>;
22324
+ incompatibleKeys: IncompatibleKeys<T, U>;
22325
+ missingInT: Exclude<keyof U, keyof T>;
22326
+ missingInU: Exclude<keyof T, keyof U>;
22327
+ typeMismatch: { [K in CompatibleKeys<T, U>]: T[K] extends U[K] ? never : U[K] extends T[K] ? never : K }[CompatibleKeys<T, U>];
22328
+ }
22329
+ /**
22330
+ * Map uni-types utility to library equivalent
22331
+ *
22332
+ * @example
22333
+ * ```ts
22334
+ * type Eq = UtilityMap<'DeepPartial', 'type-fest'>
22335
+ * ```
22336
+ */
22337
+ type UtilityMap<Utility extends 'DeepPartial' | 'DeepRequired' | 'DeepReadonly' | 'DeepMutable' | 'PickRequired' | 'OmitRequired', Library extends 'type-fest' | 'ts-toolbelt' | 'utility-types'> = Utility extends 'DeepPartial' ? Library extends 'type-fest' ? 'PartialDeep' : Library extends 'ts-toolbelt' ? 'O.Partial' : 'DeepPartial' : Utility extends 'DeepRequired' ? Library extends 'type-fest' ? 'RequiredDeep' : Library extends 'ts-toolbelt' ? 'O.Required' : 'DeepRequired' : Utility extends 'DeepReadonly' ? Library extends 'type-fest' ? 'ReadonlyDeep' : Library extends 'ts-toolbelt' ? 'O.Readonly' : 'DeepReadonly' : Utility extends 'DeepMutable' ? Library extends 'type-fest' ? 'WritableDeep' : Library extends 'ts-toolbelt' ? 'O.Writable' : 'DeepMutable' : Utility;
22338
+ /**
22339
+ * Library feature comparison
22340
+ *
22341
+ * @example
22342
+ * ```ts
22343
+ * type Features = LibraryFeatures<'type-fest'>
22344
+ * ```
22345
+ */
22346
+ type LibraryFeatures<Library extends 'type-fest' | 'ts-toolbelt' | 'utility-types'> = Library extends 'type-fest' ? ['CamelCase', 'SnakeCase', 'PartialDeep', 'ReadonlyDeep', 'Merge', 'SetRequired', 'SetOptional'] : Library extends 'ts-toolbelt' ? ['O.Partial', 'O.Required', 'O.Readonly', 'O.Writable', 'U.Pick', 'U.Exclude', 'M.Merge'] : ['DeepPartial', 'DeepReadonly', 'DeepRequired', 'PickByValue', 'OmitByValue', 'UnionToIntersection'];
22347
+ //#endregion
22348
+ //#region src/interop-v2/index.d.ts
22349
+ /**
22350
+ * Interop Enhancements
22351
+ *
22352
+ * Improved interoperability with other libraries, frameworks,
22353
+ * and schema systems for v2.0.0.
22354
+ */
22355
+ /**
22356
+ * Interop - Generic library interop wrapper
22357
+ */
22358
+ type Interop<T, Library extends string> = T & {
22359
+ __interop__: Library;
22360
+ };
22361
+ /**
22362
+ * ConvertTo - Convert a type to a target library format
22363
+ */
22364
+ type ConvertTo<T, Target extends string> = T extends object ? Target extends 'zod' ? ToZodSchema<T> : Target extends 'yup' ? ToYupSchema<T> : Target extends 'json-schema' ? ToJSONSchema<T> : T : T;
22365
+ /**
22366
+ * ConvertFrom - Convert a type from a source library format
22367
+ */
22368
+ type ConvertFrom<T, Source extends string> = T extends object ? Source extends 'zod' ? FromZodSchema<T> : Source extends 'yup' ? FromYupSchema<T> : Source extends 'json-schema' ? FromJSONSchema<T> : T : T;
22369
+ /**
22370
+ * BiDirectional - Bi-directional interop between two types
22371
+ */
22372
+ interface BiDirectional<T, U> {
22373
+ /** Forward conversion */
22374
+ to: (value: T) => U;
22375
+ /** Reverse conversion */
22376
+ from: (value: U) => T;
22377
+ /** Check if conversion is lossless */
22378
+ isLossless: boolean;
22379
+ }
22380
+ /**
22381
+ * ToZodSchema - Convert type to Zod schema shape
22382
+ */
22383
+ type ToZodSchema<T> = T extends string ? {
22384
+ type: 'string';
22385
+ } : T extends number ? {
22386
+ type: 'number';
22387
+ } : T extends boolean ? {
22388
+ type: 'boolean';
22389
+ } : T extends Date ? {
22390
+ type: 'date';
22391
+ } : T extends unknown[] ? {
22392
+ type: 'array';
22393
+ element: ToZodSchema<T[number]>;
22394
+ } : T extends object ? {
22395
+ type: 'object';
22396
+ shape: { [K in keyof T]: ToZodSchema<T[K]> };
22397
+ } : {
22398
+ type: 'unknown';
22399
+ };
22400
+ /**
22401
+ * FromZodSchema - Convert from Zod schema shape to type
22402
+ */
22403
+ type FromZodSchema<T> = T extends {
22404
+ type: 'string';
22405
+ } ? string : T extends {
22406
+ type: 'number';
22407
+ } ? number : T extends {
22408
+ type: 'boolean';
22409
+ } ? boolean : T extends {
22410
+ type: 'date';
22411
+ } ? Date : T extends {
22412
+ type: 'array';
22413
+ element: infer E;
22414
+ } ? Array<FromZodSchema<E>> : T extends {
22415
+ type: 'object';
22416
+ shape: infer S;
22417
+ } ? { [K in keyof S]: FromZodSchema<S[K]> } : unknown;
22418
+ /**
22419
+ * ToYupSchema - Convert type to Yup schema shape
22420
+ */
22421
+ type ToYupSchema<T> = T extends string ? {
22422
+ type: 'string';
22423
+ } : T extends number ? {
22424
+ type: 'number';
22425
+ } : T extends boolean ? {
22426
+ type: 'boolean';
22427
+ } : T extends Date ? {
22428
+ type: 'date';
22429
+ } : T extends unknown[] ? {
22430
+ type: 'array';
22431
+ of: ToYupSchema<T[number]>;
22432
+ } : T extends object ? {
22433
+ type: 'object';
22434
+ fields: { [K in keyof T]: ToYupSchema<T[K]> };
22435
+ } : {
22436
+ type: 'mixed';
22437
+ };
22438
+ /**
22439
+ * FromYupSchema - Convert from Yup schema shape to type
22440
+ */
22441
+ type FromYupSchema<T> = T extends {
22442
+ type: 'string';
22443
+ } ? string : T extends {
22444
+ type: 'number';
22445
+ } ? number : T extends {
22446
+ type: 'boolean';
22447
+ } ? boolean : T extends {
22448
+ type: 'date';
22449
+ } ? Date : T extends {
22450
+ type: 'array';
22451
+ of: infer E;
22452
+ } ? Array<FromYupSchema<E>> : T extends {
22453
+ type: 'object';
22454
+ fields: infer F;
22455
+ } ? { [K in keyof F]: FromYupSchema<F[K]> } : unknown;
22456
+ /**
22457
+ * ToJSONSchema - Convert type to JSON Schema representation
22458
+ */
22459
+ type ToJSONSchema<T> = T extends string ? {
22460
+ type: 'string';
22461
+ } : T extends number ? {
22462
+ type: 'number';
22463
+ } : T extends boolean ? {
22464
+ type: 'boolean';
22465
+ } : T extends null ? {
22466
+ type: 'null';
22467
+ } : T extends unknown[] ? {
22468
+ type: 'array';
22469
+ items: ToJSONSchema<T[number]>;
22470
+ } : T extends object ? {
22471
+ type: 'object';
22472
+ properties: { [K in keyof T]: ToJSONSchema<T[K]> };
22473
+ required: RequiredKeys$1<T>;
22474
+ } : Record<string, never>;
22475
+ /**
22476
+ * FromJSONSchema - Convert from JSON Schema to type
22477
+ */
22478
+ type FromJSONSchema<T> = T extends {
22479
+ type: 'string';
22480
+ } ? string : T extends {
22481
+ type: 'number';
22482
+ } ? number : T extends {
22483
+ type: 'boolean';
22484
+ } ? boolean : T extends {
22485
+ type: 'null';
22486
+ } ? null : T extends {
22487
+ type: 'array';
22488
+ items: infer I;
22489
+ } ? Array<FromJSONSchema<I>> : T extends {
22490
+ type: 'object';
22491
+ properties: infer P;
22492
+ } ? { [K in keyof P]: FromJSONSchema<P[K]> } : unknown;
22493
+ /**
22494
+ * ToReact - Convert type to React-compatible type
22495
+ */
22496
+ type ToReact<T> = T extends object ? T & {
22497
+ children?: unknown;
22498
+ key?: string | number;
22499
+ } : T;
22500
+ /**
22501
+ * ToVue - Convert type to Vue-compatible type
22502
+ */
22503
+ type ToVue<T> = T extends object ? { [K in keyof T]: T[K] } & {
22504
+ __vue__?: true;
22505
+ } : T;
22506
+ /**
22507
+ * ToSvelte - Convert type to Svelte-compatible type
22508
+ */
22509
+ type ToSvelte<T> = T extends object ? { [K in keyof T]: T[K] } & {
22510
+ $$slots?: Record<string, unknown>;
22511
+ } : T;
22512
+ /**
22513
+ * ToAngular - Convert type to Angular-compatible type
22514
+ */
22515
+ type ToAngular<T> = T extends object ? { [K in keyof T]: T[K] } & {
22516
+ __angular__: true;
22517
+ } : T;
22518
+ /**
22519
+ * ToTypeFest - Convert to type-fest compatible type
22520
+ */
22521
+ type ToTypeFest<T> = T extends object ? { [K in keyof T]: ToTypeFest<T[K]> } : T;
22522
+ /**
22523
+ * FromTypeFest - Convert from type-fest compatible type
22524
+ */
22525
+ type FromTypeFest<T> = T extends object ? { [K in keyof T]: FromTypeFest<T[K]> } : T;
22526
+ /**
22527
+ * ToTsToolbelt - Convert to ts-toolbelt compatible type
22528
+ */
22529
+ type ToTsToolbelt<T> = T extends object ? { [K in keyof T]: ToTsToolbelt<T[K]> } : T;
22530
+ /**
22531
+ * FromTsToolbelt - Convert from ts-toolbelt compatible type
22532
+ */
22533
+ type FromTsToolbelt<T> = T extends object ? { [K in keyof T]: FromTsToolbelt<T[K]> } : T;
22534
+ /**
22535
+ * RequiredKeys - Extract required keys from an object type
22536
+ */
22537
+ type RequiredKeys$1<T> = { [K in keyof T]-?: object extends Pick<T, K> ? never : K }[keyof T];
21051
22538
  /**
21052
- * Type compatibility report
21053
- *
21054
- * @example
21055
- * ```ts
21056
- * type Report = CompatibilityReport<{ a: string }, { a: number }>
21057
- * ```
22539
+ * OptionalKeys - Extract optional keys from an object type
21058
22540
  */
21059
- interface CompatibilityReport<T, U> {
21060
- compatible: IsCompatible<T, U>;
21061
- compatibleKeys: CompatibleKeys<T, U>;
21062
- incompatibleKeys: IncompatibleKeys<T, U>;
21063
- missingInT: Exclude<keyof U, keyof T>;
21064
- missingInU: Exclude<keyof T, keyof U>;
21065
- typeMismatch: { [K in CompatibleKeys<T, U>]: T[K] extends U[K] ? never : U[K] extends T[K] ? never : K }[CompatibleKeys<T, U>];
21066
- }
21067
22541
  /**
21068
- * Map uni-types utility to library equivalent
21069
- *
21070
- * @example
21071
- * ```ts
21072
- * type Eq = UtilityMap<'DeepPartial', 'type-fest'>
21073
- * ```
22542
+ * InteropResult - Result of an interop conversion
21074
22543
  */
21075
- type UtilityMap<Utility extends 'DeepPartial' | 'DeepRequired' | 'DeepReadonly' | 'DeepMutable' | 'PickRequired' | 'OmitRequired', Library extends 'type-fest' | 'ts-toolbelt' | 'utility-types'> = Utility extends 'DeepPartial' ? Library extends 'type-fest' ? 'PartialDeep' : Library extends 'ts-toolbelt' ? 'O.Partial' : 'DeepPartial' : Utility extends 'DeepRequired' ? Library extends 'type-fest' ? 'RequiredDeep' : Library extends 'ts-toolbelt' ? 'O.Required' : 'DeepRequired' : Utility extends 'DeepReadonly' ? Library extends 'type-fest' ? 'ReadonlyDeep' : Library extends 'ts-toolbelt' ? 'O.Readonly' : 'DeepReadonly' : Utility extends 'DeepMutable' ? Library extends 'type-fest' ? 'WritableDeep' : Library extends 'ts-toolbelt' ? 'O.Writable' : 'DeepMutable' : Utility;
22544
+ interface InteropResult<T, Source extends string, Target extends string> {
22545
+ /** The converted type */
22546
+ converted: ConvertTo<T, Target>;
22547
+ /** Source library */
22548
+ source: Source;
22549
+ /** Target library */
22550
+ target: Target;
22551
+ /** Whether conversion is lossless */
22552
+ lossless: boolean;
22553
+ }
21076
22554
  /**
21077
- * Library feature comparison
21078
- *
21079
- * @example
21080
- * ```ts
21081
- * type Features = LibraryFeatures<'type-fest'>
21082
- * ```
22555
+ * InteropMap - Map of interop conversions
21083
22556
  */
21084
- type LibraryFeatures<Library extends 'type-fest' | 'ts-toolbelt' | 'utility-types'> = Library extends 'type-fest' ? ['CamelCase', 'SnakeCase', 'PartialDeep', 'ReadonlyDeep', 'Merge', 'SetRequired', 'SetOptional'] : Library extends 'ts-toolbelt' ? ['O.Partial', 'O.Required', 'O.Readonly', 'O.Writable', 'U.Pick', 'U.Exclude', 'M.Merge'] : ['DeepPartial', 'DeepReadonly', 'DeepRequired', 'PickByValue', 'OmitByValue', 'UnionToIntersection'];
22557
+ type InteropMap<T, Libraries extends string = string> = { [Lib in Libraries]: ConvertTo<T, Lib> };
21085
22558
  //#endregion
21086
22559
  //#region src/utils/index.d.ts
21087
22560
  /**
@@ -24043,7 +25516,7 @@ interface Sentence<T extends Token$1 = Token$1> {
24043
25516
  end: number;
24044
25517
  parseTree?: ParseTree$1;
24045
25518
  dependencies?: DependencyRelation[];
24046
- sentiment?: SentimentResult;
25519
+ sentiment?: SentimentResult$1;
24047
25520
  }
24048
25521
  /**
24049
25522
  * Paragraph type
@@ -24318,7 +25791,7 @@ type SentimentLabel = 'positive' | 'negative' | 'neutral' | 'mixed';
24318
25791
  /**
24319
25792
  * Sentiment result
24320
25793
  */
24321
- interface SentimentResult {
25794
+ interface SentimentResult$1 {
24322
25795
  score: SentimentScore;
24323
25796
  label: SentimentLabel;
24324
25797
  confidence: number;
@@ -27680,6 +29153,202 @@ interface PluginAPI<T = unknown> {
27680
29153
  config?: T;
27681
29154
  }
27682
29155
  //#endregion
29156
+ //#region src/plugin-v2/index.d.ts
29157
+ /**
29158
+ * Plugin System Preview
29159
+ *
29160
+ * Preview of the v2.0.0 extensible plugin architecture,
29161
+ * providing type-safe plugin development and lifecycle management.
29162
+ */
29163
+ /**
29164
+ * PluginV2 - Core plugin type (v2 preview)
29165
+ */
29166
+ interface PluginV2<T = unknown> {
29167
+ /** Plugin name */
29168
+ readonly name: string;
29169
+ /** Plugin version */
29170
+ readonly version: string;
29171
+ /** Plugin type */
29172
+ readonly type: PluginTypeV2;
29173
+ /** Plugin data */
29174
+ readonly data: T;
29175
+ }
29176
+ /**
29177
+ * Plugin type classification
29178
+ */
29179
+ type PluginTypeV2 = 'transform' | 'analysis' | 'generator' | 'linter' | 'formatter' | 'custom';
29180
+ /**
29181
+ * PluginAPIV2 - Plugin API type (v2 preview)
29182
+ */
29183
+ interface PluginAPIV2<T = unknown> {
29184
+ /** Plugin context */
29185
+ readonly context: PluginContextV2<T>;
29186
+ /** Register a hook */
29187
+ registerHook: <H extends PluginHookV2>(hook: H) => void;
29188
+ /** Unregister a hook */
29189
+ unregisterHook: (hookName: string) => void;
29190
+ /** Get plugin config */
29191
+ getConfig: () => PluginConfigV2<T>;
29192
+ }
29193
+ /**
29194
+ * PluginContextV2 - Plugin execution context
29195
+ */
29196
+ interface PluginContextV2<T = unknown> {
29197
+ /** Plugin data */
29198
+ readonly data: T;
29199
+ /** Plugin metadata */
29200
+ readonly meta: PluginMetadataV2;
29201
+ /** Plugin services */
29202
+ readonly services: PluginServicesV2;
29203
+ }
29204
+ /**
29205
+ * PluginHookV2 - Plugin hook type (v2 preview)
29206
+ */
29207
+ interface PluginHookV2<T = unknown> {
29208
+ /** Hook name */
29209
+ readonly name: string;
29210
+ /** Hook type */
29211
+ readonly type: HookTypeV2;
29212
+ /** Hook handler */
29213
+ readonly handler: HookHandlerV2<T>;
29214
+ /** Hook priority */
29215
+ readonly priority?: number;
29216
+ }
29217
+ /**
29218
+ * Hook type classification
29219
+ */
29220
+ type HookTypeV2 = 'before' | 'after' | 'transform' | 'validate' | 'error';
29221
+ /**
29222
+ * HookHandlerV2 - Hook handler function type
29223
+ */
29224
+ type HookHandlerV2<T = unknown> = (context: PluginContextV2<T>) => T | Promise<T>;
29225
+ /**
29226
+ * PluginInitV2 - Plugin initialization type (v2 preview)
29227
+ */
29228
+ interface PluginInitV2<T = unknown> {
29229
+ /** Plugin being initialized */
29230
+ readonly plugin: PluginV2<T>;
29231
+ /** Init options */
29232
+ readonly options: PluginConfigV2<T>;
29233
+ /** Init phase */
29234
+ readonly phase: InitPhaseV2;
29235
+ }
29236
+ /**
29237
+ * Initialization phases
29238
+ */
29239
+ type InitPhaseV2 = 'construct' | 'configure' | 'validate' | 'activate';
29240
+ /**
29241
+ * PluginLoadV2 - Plugin loading type (v2 preview)
29242
+ */
29243
+ interface PluginLoadV2<T = unknown> {
29244
+ /** Plugin being loaded */
29245
+ readonly plugin: PluginV2<T>;
29246
+ /** Load order */
29247
+ readonly order: number;
29248
+ /** Dependencies */
29249
+ readonly dependencies: string[];
29250
+ /** Load status */
29251
+ readonly status: LoadStatusV2;
29252
+ }
29253
+ /**
29254
+ * Load status
29255
+ */
29256
+ type LoadStatusV2 = 'pending' | 'loading' | 'loaded' | 'failed' | 'unloaded';
29257
+ /**
29258
+ * PluginConfigV2 - Plugin configuration (v2 preview)
29259
+ */
29260
+ interface PluginConfigV2<T = unknown> {
29261
+ /** Plugin name */
29262
+ readonly name: string;
29263
+ /** Plugin options */
29264
+ readonly options: T;
29265
+ /** Whether plugin is enabled */
29266
+ readonly enabled: boolean;
29267
+ /** Plugin priority */
29268
+ readonly priority: number;
29269
+ }
29270
+ /**
29271
+ * PluginRegistryV2 - Plugin registry (v2 preview)
29272
+ */
29273
+ interface PluginRegistryV2<T = unknown> {
29274
+ /** Registered plugins */
29275
+ readonly plugins: Map<string, PluginV2<T>>;
29276
+ /** Register a plugin */
29277
+ register: (plugin: PluginV2<T>) => void;
29278
+ /** Unregister a plugin */
29279
+ unregister: (name: string) => void;
29280
+ /** Get a plugin by name */
29281
+ get: (name: string) => PluginV2<T> | undefined;
29282
+ /** Check if plugin is registered */
29283
+ has: (name: string) => boolean;
29284
+ /** Get all plugin names */
29285
+ names: () => string[];
29286
+ }
29287
+ /**
29288
+ * RegisteredPlugin - A plugin that has been registered
29289
+ */
29290
+ type RegisteredPlugin<T = unknown> = PluginV2<T> & {
29291
+ /** Registration timestamp */readonly registeredAt: number; /** Registration order */
29292
+ readonly order: number;
29293
+ };
29294
+ /**
29295
+ * PluginMetadataV2 - Plugin metadata
29296
+ */
29297
+ interface PluginMetadataV2 {
29298
+ /** Plugin name */
29299
+ readonly name: string;
29300
+ /** Plugin version */
29301
+ readonly version: string;
29302
+ /** Plugin description */
29303
+ readonly description?: string;
29304
+ /** Plugin author */
29305
+ readonly author?: string;
29306
+ /** Plugin license */
29307
+ readonly license?: string;
29308
+ /** Plugin homepage */
29309
+ readonly homepage?: string;
29310
+ /** Plugin dependencies */
29311
+ readonly dependencies?: string[];
29312
+ /** Plugin tags */
29313
+ readonly tags?: string[];
29314
+ }
29315
+ /**
29316
+ * PluginServicesV2 - Services available to plugins
29317
+ */
29318
+ interface PluginServicesV2 {
29319
+ /** Logger service */
29320
+ logger: PluginLoggerV2;
29321
+ /** Config service */
29322
+ config: PluginConfigServiceV2;
29323
+ /** Event bus */
29324
+ events: PluginEventBusV2;
29325
+ }
29326
+ /**
29327
+ * PluginLoggerV2 - Logger available to plugins
29328
+ */
29329
+ interface PluginLoggerV2 {
29330
+ info: (message: string, ...args: unknown[]) => void;
29331
+ warn: (message: string, ...args: unknown[]) => void;
29332
+ error: (message: string, ...args: unknown[]) => void;
29333
+ debug: (message: string, ...args: unknown[]) => void;
29334
+ }
29335
+ /**
29336
+ * PluginConfigServiceV2 - Config service for plugins
29337
+ */
29338
+ interface PluginConfigServiceV2 {
29339
+ get: <T = unknown>(key: string) => T | undefined;
29340
+ set: (key: string, value: unknown) => void;
29341
+ has: (key: string) => boolean;
29342
+ }
29343
+ /**
29344
+ * PluginEventBusV2 - Event bus for plugins
29345
+ */
29346
+ interface PluginEventBusV2 {
29347
+ emit: (event: string, data: unknown) => void;
29348
+ on: (event: string, handler: (data: unknown) => void) => void;
29349
+ off: (event: string, handler: (data: unknown) => void) => void;
29350
+ }
29351
+ //#endregion
27683
29352
  //#region src/polish/index.d.ts
27684
29353
  /**
27685
29354
  * Final Polish Types
@@ -28581,9 +30250,9 @@ interface PerformanceDiagnostic {
28581
30250
  severity: 'error' | 'warning' | 'info';
28582
30251
  score?: number;
28583
30252
  details?: unknown;
28584
- items?: DiagnosticItem[];
30253
+ items?: DiagnosticItem$1[];
28585
30254
  }
28586
- interface DiagnosticItem {
30255
+ interface DiagnosticItem$1 {
28587
30256
  value: string | number;
28588
30257
  displayValue?: string;
28589
30258
  severity: 'error' | 'warning' | 'info';
@@ -28713,29 +30382,7 @@ interface SideEffectInfo {
28713
30382
  * Lighthouse score type
28714
30383
  */
28715
30384
  type LighthouseScore = number;
28716
- /**
28717
- * Quality gate type
28718
- */
28719
- interface QualityGate<T = unknown> {
28720
- id: string;
28721
- name: string;
28722
- description?: string;
28723
- enabled: boolean;
28724
- conditions: GateCondition[];
28725
- status: GateResult;
28726
- projects: string[];
28727
- branch?: string;
28728
- custom?: T;
28729
- }
28730
- interface GateCondition {
28731
- metric: string;
28732
- operator: 'LESS_THAN' | 'GREATER_THAN' | 'EQUALS' | 'NOT_EQUALS' | 'LIKE' | 'NOT_LIKE';
28733
- value: number;
28734
- errorThreshold?: number;
28735
- warningThreshold?: number;
28736
- period?: 'day' | 'week' | 'month' | 'year' | 'overall';
28737
- }
28738
- type GateResult = 'passed' | 'failed' | 'warning';
30385
+ type GateResult$1 = 'passed' | 'failed' | 'warning';
28739
30386
  /**
28740
30387
  * Quality gate condition result
28741
30388
  */
@@ -28743,7 +30390,7 @@ interface GateConditionResult {
28743
30390
  metric: string;
28744
30391
  operator: string;
28745
30392
  value: number;
28746
- status: GateResult;
30393
+ status: GateResult$1;
28747
30394
  actualValue: number;
28748
30395
  description: string;
28749
30396
  }
@@ -29258,6 +30905,236 @@ interface GateFidelity<G extends QuantumGate = QuantumGate> {
29258
30905
  errorRate: number;
29259
30906
  }
29260
30907
  //#endregion
30908
+ //#region src/rc-gates/index.d.ts
30909
+ /**
30910
+ * RC Quality Gates
30911
+ *
30912
+ * Quality gates for release candidate validation,
30913
+ * including validation, release criteria, and readiness checks.
30914
+ */
30915
+ /**
30916
+ * QualityGate - Quality gate type
30917
+ */
30918
+ interface QualityGate<T = unknown> {
30919
+ /** Gate name */
30920
+ name: string;
30921
+ /** Gate description */
30922
+ description: string;
30923
+ /** Conditions */
30924
+ conditions: GateCondition<T>[];
30925
+ /** Gate result */
30926
+ result: GateResult;
30927
+ /** Last evaluated */
30928
+ lastEvaluated?: number;
30929
+ }
30930
+ /**
30931
+ * GateCondition - Condition for a quality gate
30932
+ */
30933
+ interface GateCondition<T = unknown> {
30934
+ /** Condition name */
30935
+ name: string;
30936
+ /** Condition description */
30937
+ description: string;
30938
+ /** Condition type */
30939
+ type: GateConditionType;
30940
+ /** Expected value */
30941
+ expected: T;
30942
+ /** Actual value */
30943
+ actual?: T;
30944
+ /** Is met */
30945
+ met: boolean;
30946
+ /** Severity if not met */
30947
+ severity: GateSeverity;
30948
+ }
30949
+ /**
30950
+ * Gate condition types
30951
+ */
30952
+ type GateConditionType = 'test-coverage' | 'type-coverage' | 'lint-pass' | 'build-pass' | 'no-breaking-changes' | 'documentation-complete' | 'performance-threshold' | 'security-audit' | 'migration-test' | 'compatibility-check';
30953
+ /**
30954
+ * Gate result
30955
+ */
30956
+ type GateResult = 'passed' | 'failed' | 'warning';
30957
+ /**
30958
+ * Gate severity
30959
+ */
30960
+ type GateSeverity = 'blocker' | 'critical' | 'major' | 'minor' | 'info';
30961
+ /**
30962
+ * ValidateRC - RC validation type
30963
+ */
30964
+ interface ValidateRC<T = unknown> {
30965
+ /** RC version */
30966
+ version: string;
30967
+ /** Validation timestamp */
30968
+ timestamp: number;
30969
+ /** Validation checks */
30970
+ checks: RCValidationCheck<T>[];
30971
+ /** Overall result */
30972
+ result: GateResult;
30973
+ /** Summary */
30974
+ summary: RCValidationSummary;
30975
+ }
30976
+ /**
30977
+ * RC validation check
30978
+ */
30979
+ interface RCValidationCheck<T = unknown> {
30980
+ /** Check name */
30981
+ name: string;
30982
+ /** Check category */
30983
+ category: RCCheckCategory;
30984
+ /** Check result */
30985
+ result: GateResult;
30986
+ /** Check details */
30987
+ details: string;
30988
+ /** Data */
30989
+ data?: T;
30990
+ /** Duration */
30991
+ duration: number;
30992
+ }
30993
+ /**
30994
+ * RC check categories
30995
+ */
30996
+ type RCCheckCategory = 'compatibility' | 'performance' | 'security' | 'documentation' | 'testing' | 'build' | 'migration' | 'api-stability';
30997
+ /**
30998
+ * RC validation summary
30999
+ */
31000
+ interface RCValidationSummary {
31001
+ /** Total checks */
31002
+ total: number;
31003
+ /** Passed checks */
31004
+ passed: number;
31005
+ /** Failed checks */
31006
+ failed: number;
31007
+ /** Warnings */
31008
+ warnings: number;
31009
+ /** Pass rate */
31010
+ passRate: number;
31011
+ }
31012
+ /**
31013
+ * RCValidationReport - RC validation report
31014
+ */
31015
+ interface RCValidationReport<T = unknown> {
31016
+ /** Report ID */
31017
+ id: string;
31018
+ /** RC version */
31019
+ version: string;
31020
+ /** Report timestamp */
31021
+ timestamp: number;
31022
+ /** Quality gates */
31023
+ gates: QualityGate<T>[];
31024
+ /** Validation result */
31025
+ validation: ValidateRC<T>;
31026
+ /** Overall readiness */
31027
+ readiness: RCReadiness;
31028
+ /** Recommendations */
31029
+ recommendations: string[];
31030
+ }
31031
+ /**
31032
+ * RCReadiness - RC readiness assessment
31033
+ */
31034
+ interface RCReadiness {
31035
+ /** Is ready for release */
31036
+ ready: boolean;
31037
+ /** Readiness score (0-100) */
31038
+ score: number;
31039
+ /** Blocking issues */
31040
+ blockingIssues: string[];
31041
+ /** Warnings */
31042
+ warnings: string[];
31043
+ /** Assessment timestamp */
31044
+ timestamp: number;
31045
+ }
31046
+ /**
31047
+ * ReleaseCriteria - Release criteria type
31048
+ */
31049
+ interface ReleaseCriteria<T = unknown> {
31050
+ /** Criteria name */
31051
+ name: string;
31052
+ /** Criteria description */
31053
+ description: string;
31054
+ /** Criteria type */
31055
+ type: ReleaseCriteriaType;
31056
+ /** Threshold */
31057
+ threshold: T;
31058
+ /** Current value */
31059
+ current?: T;
31060
+ /** Is met */
31061
+ met: boolean;
31062
+ /** Is blocking */
31063
+ blocking: boolean;
31064
+ }
31065
+ /**
31066
+ * Release criteria types
31067
+ */
31068
+ type ReleaseCriteriaType = 'test-coverage-min' | 'zero-critical-bugs' | 'zero-security-vulnerabilities' | 'documentation-coverage' | 'performance-regression' | 'api-compatibility' | 'migration-path-available' | 'community-feedback-threshold' | 'beta-testing-complete' | 'all-platforms-tested';
31069
+ /**
31070
+ * CriteriaCheck - Criteria check result
31071
+ */
31072
+ interface CriteriaCheck<T = unknown> {
31073
+ /** Criteria being checked */
31074
+ criteria: ReleaseCriteria<T>;
31075
+ /** Check timestamp */
31076
+ timestamp: number;
31077
+ /** Check result */
31078
+ result: GateResult;
31079
+ /** Details */
31080
+ details: string;
31081
+ }
31082
+ /**
31083
+ * ReleaseBlocker - A blocking issue for release
31084
+ */
31085
+ interface ReleaseBlocker {
31086
+ /** Blocker ID */
31087
+ id: string;
31088
+ /** Blocker title */
31089
+ title: string;
31090
+ /** Blocker description */
31091
+ description: string;
31092
+ /** Severity */
31093
+ severity: 'blocker' | 'critical';
31094
+ /** Affected area */
31095
+ area: string;
31096
+ /** Created at */
31097
+ createdAt: number;
31098
+ /** Resolved */
31099
+ resolved: boolean;
31100
+ /** Resolution */
31101
+ resolution?: string;
31102
+ }
31103
+ /**
31104
+ * RCConfig - RC quality gate configuration
31105
+ */
31106
+ interface RCConfig {
31107
+ /** Required quality gates */
31108
+ requiredGates: string[];
31109
+ /** Release criteria */
31110
+ releaseCriteria: ReleaseCriteria<unknown>[];
31111
+ /** Blocking severity levels */
31112
+ blockingSeverities: GateSeverity[];
31113
+ /** Minimum readiness score */
31114
+ minimumReadinessScore: number;
31115
+ /** Auto-promote on pass */
31116
+ autoPromote: boolean;
31117
+ /** Notification settings */
31118
+ notifications: NotificationConfig;
31119
+ }
31120
+ /**
31121
+ * Notification configuration
31122
+ */
31123
+ interface NotificationConfig {
31124
+ /** Notify on gate pass */
31125
+ onGatePass: boolean;
31126
+ /** Notify on gate fail */
31127
+ onGateFail: boolean;
31128
+ /** Notify on readiness change */
31129
+ onReadinessChange: boolean;
31130
+ /** Notification channels */
31131
+ channels: NotificationChannel[];
31132
+ }
31133
+ /**
31134
+ * Notification channels
31135
+ */
31136
+ type NotificationChannel = 'email' | 'slack' | 'webhook' | 'github' | 'none';
31137
+ //#endregion
29261
31138
  //#region src/reactive/index.d.ts
29262
31139
  /**
29263
31140
  * Type-Level Reactive Programming
@@ -32769,6 +34646,141 @@ type AssertKeys<T, K extends keyof T> = K extends keyof T ? T : never;
32769
34646
  */
32770
34647
  type AssertValues<T, V> = { [K in keyof T]: T[K] extends V ? T[K] : never };
32771
34648
  //#endregion
34649
+ //#region src/unified/index.d.ts
34650
+ /**
34651
+ * Unified Type System Preview
34652
+ *
34653
+ * Preview of the v2.0.0 unified type system with consistent naming
34654
+ * conventions and simplified API.
34655
+ */
34656
+ /**
34657
+ * TypeV2 - Core type wrapper for v2.0.0 (preview)
34658
+ */
34659
+ interface TypeV2<T> {
34660
+ /** The underlying type */
34661
+ readonly _type: T;
34662
+ /** Version marker */
34663
+ readonly _version: 'v2';
34664
+ }
34665
+ /**
34666
+ * OpsV2 - Type operations namespace (preview)
34667
+ */
34668
+ interface OpsV2<T> {
34669
+ /** The type being operated on */
34670
+ readonly _target: T;
34671
+ /** Operation version */
34672
+ readonly _opsVersion: 'v2';
34673
+ }
34674
+ /**
34675
+ * ExtV2 - Extensions namespace (preview)
34676
+ */
34677
+ interface ExtV2<T> {
34678
+ /** The type being extended */
34679
+ readonly _target: T;
34680
+ /** Extension version */
34681
+ readonly _extVersion: 'v2';
34682
+ }
34683
+ /**
34684
+ * UtilV2 - Utilities namespace (preview)
34685
+ */
34686
+ interface UtilV2<T> {
34687
+ /** The type being utilized */
34688
+ readonly _target: T;
34689
+ /** Utility version */
34690
+ readonly _utilVersion: 'v2';
34691
+ }
34692
+ /**
34693
+ * PickRequiredV2 - New implementation for v2.0.0
34694
+ * Makes specified keys required while keeping others as-is
34695
+ */
34696
+ type PickRequiredV2<T, K extends keyof T> = T & { [P in K]-?: NonNullable<T[P]> };
34697
+ /**
34698
+ * DeepPartialV2 - New implementation for v2.0.0
34699
+ * Makes all properties including nested ones optional
34700
+ */
34701
+ type DeepPartialV2<T> = T extends object ? T extends ((...args: unknown[]) => unknown) ? T : T extends ReadonlyArray<infer U> ? ReadonlyArray<DeepPartialV2<U>> : T extends unknown[] ? Array<DeepPartialV2<T[number]>> : { [K in keyof T]?: DeepPartialV2<T[K]> } : T;
34702
+ /**
34703
+ * IsArrayV2 - New implementation for v2.0.0
34704
+ * Checks if a type is an array
34705
+ */
34706
+ type IsArrayV2<T> = T extends unknown[] ? true : false;
34707
+ /**
34708
+ * DeepReadonlyV2 - Deep readonly for v2.0.0
34709
+ */
34710
+ type DeepReadonlyV2<T> = T extends object ? T extends ((...args: unknown[]) => unknown) ? T : T extends ReadonlyArray<infer U> ? ReadonlyArray<DeepReadonlyV2<U>> : { readonly [K in keyof T]: DeepReadonlyV2<T[K]> } : T;
34711
+ /**
34712
+ * DeepRequiredV2 - Deep required for v2.0.0
34713
+ */
34714
+ type DeepRequiredV2<T> = T extends object ? T extends ((...args: unknown[]) => unknown) ? T : T extends ReadonlyArray<infer U> ? ReadonlyArray<DeepRequiredV2<U>> : T extends unknown[] ? Array<DeepRequiredV2<T[number]>> : { [K in keyof T]-?: DeepRequiredV2<NonNullable<T[K]>> } : T;
34715
+ /**
34716
+ * UnifiedPick - Unified pick operation for v2.0.0
34717
+ */
34718
+ type UnifiedPick<T, K extends keyof T> = { [P in K]: T[P] };
34719
+ /**
34720
+ * UnifiedOmit - Unified omit operation for v2.0.0
34721
+ */
34722
+ type UnifiedOmit<T, K extends keyof T> = { [P in keyof T as P extends K ? never : P]: T[P] };
34723
+ /**
34724
+ * UnifiedPartial - Unified partial operation for v2.0.0
34725
+ */
34726
+ type UnifiedPartial<T> = { [K in keyof T]?: T[K] };
34727
+ /**
34728
+ * UnifiedRequired - Unified required operation for v2.0.0
34729
+ */
34730
+ type UnifiedRequired<T> = { [K in keyof T]-?: T[K] };
34731
+ /**
34732
+ * UnifiedMerge - Unified merge operation for v2.0.0
34733
+ */
34734
+ type UnifiedMerge<T, U> = { [K in keyof T | keyof U]: K extends keyof U ? U[K] : K extends keyof T ? T[K] : never };
34735
+ /**
34736
+ * UnifiedDeepMerge - Unified deep merge for v2.0.0
34737
+ */
34738
+ type UnifiedDeepMerge<T, U> = { [K in keyof T | keyof U]: K extends keyof U ? U[K] extends object ? K extends keyof T ? T[K] extends object ? UnifiedDeepMerge<T[K], U[K]> : U[K] : U[K] : U[K] : K extends keyof T ? T[K] : never };
34739
+ /**
34740
+ * IsEqualV2 - v2 exact equality check
34741
+ */
34742
+ type IsEqualV2<T, U> = T extends U ? U extends T ? true : false : false;
34743
+ /**
34744
+ * IsSubtypeV2 - v2 subtype check
34745
+ */
34746
+ type IsSubtypeV2<T, U> = T extends U ? true : false;
34747
+ /**
34748
+ * IsSupertypeV2 - v2 supertype check
34749
+ */
34750
+ type IsSupertypeV2<T, U> = U extends T ? true : false;
34751
+ /**
34752
+ * TypeBuilderV2 - Builder pattern for types (v2.0.0 preview)
34753
+ * Note: Uses type representation instead of interface with generic methods
34754
+ * for bundler compatibility.
34755
+ */
34756
+ interface TypeBuilderV2<T = unknown> {
34757
+ /** The current type being built */
34758
+ readonly _type: T;
34759
+ }
34760
+ /**
34761
+ * V1Compat - Compatibility wrapper for v1.x types
34762
+ */
34763
+ type V1Compat<T> = T & {
34764
+ __v1_compat__: true;
34765
+ };
34766
+ /**
34767
+ * V2Migration - Migration helper from v1 to v2
34768
+ */
34769
+ interface V2Migration<T, U> {
34770
+ /** v1 type */
34771
+ v1: T;
34772
+ /** v2 type */
34773
+ v2: U;
34774
+ /** Migration path */
34775
+ path: string;
34776
+ /** Breaking changes */
34777
+ breaking: boolean;
34778
+ }
34779
+ /**
34780
+ * V2APIVersion - API version marker
34781
+ */
34782
+ type V2APIVersion = 'v1' | 'v2';
34783
+ //#endregion
32772
34784
  //#region src/validation/index.d.ts
32773
34785
  /**
32774
34786
  * Validation Rules Types
@@ -34058,4 +36070,4 @@ interface WorkflowExecutor {
34058
36070
  */
34059
36071
  type ErrorHandlingStrategy = 'fail-fast' | 'compensate' | 'ignore' | 'manual';
34060
36072
  //#endregion
34061
- export { type ABAC, type ABACConfig, ABIError, ABIEvent, ABIFunction, ABIParameter, ABIType, type ACL, type ACLEntry, ADSREnvelope, type APIAuth, type APIBody, APIChange, type APICredentials, APIDiff, type APIDoc, type APIEndpoint, type APIError, type APIGateway, type APIHeader, type APIMediaType, type APIParameter, type RateLimit as APIRateLimit, type APIResponse, type APISchema, type ARCCache, ARIAAutocompleteValue, ARIACurrentValue, ARIAHasPopupValue, ARIAInvalidValue, ARIALiveValue, ARIAOrientationValue, ARIAProperty, ARIAPropertyValue, ARIARelevantValue, ARIARole, ARIARoleCategory, ARIASortValue, ARIAState, type ASCIIGraph, type ASCIIGraphOptions, type ASCIITable, type ASCIITableColumn, type ASCIITableOptions, type ASCIITree, type ASCIITreeNode, type ASCIITreeOptions, type ASTDeclaration, type ASTExpression, type ASTNode, type ASTNodeType, type ASTProgram, type Property as ASTProperty, type ASTStatement, type ASTTransformer, type ASTVisitor, AWSResource, type Abs, type AbsolutePath, type AccessControl, AccessList, AccessListEntry, AccessibilityAnimationOptions, AccessibilityCheckResult, AccessibilityNode, AccessibilityNodeProperties, AccessibilityProps, AccessibilityRule, AccessibilityTree, AccessibilityViolation, AccessibleDescription, AccessibleName, AccessibleNameSource, type AccessorDecorator, type Action, type ActivationFunction, type ActivationLayer, type Adapter, type Add, type AddBusinessDays, type AddDays, AddEventListenerOptions, type AddHours, type AddMinutes, type AddMonths, type AddSeconds, AddStage, type AddWeeks, type AddYears, AddedAPI, type AddedProperties, Address, type Adler32, AffectedComponent, type AfterOptions, Aggregate, type AggregateEvents, AggregatedEvent, AggregationConfig, AggregationType, AggregationWindow, type Alert, type AlertAction, type AlertConfig, type AlertReceiver, type AlertRoute, type AlertRule, type AlertSeverity, type AlertStatus, type Find as AlgorithmFind, type FindIndex as AlgorithmFindIndex, type Flatten as AlgorithmFlatten, type FlattenDeep as AlgorithmFlattenDeep, type Includes as AlgorithmIncludes, type IndexOf as AlgorithmIndexOf, type Reverse as AlgorithmReverse, type Unique as AlgorithmUnique, AlignmentInfo, type AllIndices, type AllIndicesOf, type AllVars, AltText, AmbientLight, AnalyserOptions, AnalysisIssue, AnalysisSuggestion, AnalysisSummary, type Analyze, AnalyzedFile, And, type Angle, Animation, AnimationBase, AnimationBlendTree, AnimationClip, type AnimationComponent, AnimationController, AnimationDirection, AnimationDuration, AnimationEvent, AnimationFillMode, AnimationFrame, AnimationLayer, AnimationOptions, AnimationParameter, AnimationParameterValue, AnimationParameters, AnimationPlaybackState, AnimationState, AnimationTarget, AnimationTimeline, AnimationTrack, AnimationTransition, type Annotate, AnsibleHandler, AnsibleInventory, AnsiblePlaybook, AnsibleRole, AnsibleTask, type AppendEntriesRequest, type AppendEntriesResponse, type AppendOptions, type Applicative, AppliedOptimization, type Apply, ApplyCodemod, type ApplyConstraint, type ApplyRule, type ApplySubstitution, ArchitectureConstraint, ArchitectureValidationResult, ArchitectureViolation, type Archive, type ArchiveEntry, type ArchiveFormat, type ArchiveOptions, type AreDisjoint, type AroundOptions, type Difference as ArrayDifference, ArrayElement, type ArrayEquals, type ArrayExpression, type ArrayFieldValidator, ArrayPaths, type Range as ArrayRange, type ArrowFunctionExpression, AspectSentiment, type Assert, type AssertEqual, type AssertExtends, AssertHasProperty, AssertKeyof, type AssertKeys, type AssertNever, AssertNotNil, type AssertShape, AssertType, type AssertValues, type Assertion, type AssertionFunction, type AssertionMatcher, AssetInfo, type Assignable, type AssignmentOperator, type AstroFrontmatter, type AstroGlobal, type AstroLayout, type AstroProps, type AstroStaticPaths, type AsymmetricAlgorithm, AsyncEventHandler, AsyncFailure, AsyncParameters, AsyncResult, type AsyncReturnType, AsyncReturnTypeFromPromise, type AsyncSubject, AsyncSuccess, type At, AtLeastOne, type AtOr, type AttentionConfig, type AttentionLayer, type Attribute, type AttributeValue, AudioBufferData, AudioChannel, AudioEffect, AudioEffectBase, AudioEncodingOptions, AudioFeatures, AudioFormat, AudioGraph, AudioGraphNode, AudioListenerOptions, AudioMetadata, AudioNodeConnection, AudioSample, AudioSourceNode, type AuthConfig, type AuthError, type AuthProvider, type AuthResult, type AuthStatus, type AuthToken, type AuthType, type Authentication, type AuthenticationError, type AuthorizationError, type AuthorizationOptions, type AuthorizationProvider, AvatarMask, type Average, AvroArraySchema, AvroEnumSchema, AvroField, AvroFixedSchema, AvroMapSchema, AvroPrimitiveType, AvroRecordSchema, AvroSchema, AvroUnionSchema, Awaited$1 as Awaited, AzureResource, type BPMNEvent, type BPMNEventTrigger, type BPMNEventType, type BPMNGateway, type BPMNGatewayCondition, type BPMNGatewayType, type BPMNProcess, type BPMNProcessType, type BPMNTask, type BPMNTaskType, BSONDocument, BSONValue, BabelConfig, BabelPlugin, BabelPreset, BabelTransformResult, Backport, type BackpressureConfig, type BackpressureState, type BackpressureStrategy, BackwardsCompatible, BannerProps, type Base64, type Base64URL, type BaseEvent, type BaseKind, BaseTransaction, BaselineComparison, type BasicCredentials, type Batch, BeatDetectionResult, type BeforeOptions, type BehaviorSubject, BellState, type Benchmark, type BenchmarkComparison, type BenchmarkConfig, type BenchmarkResult, type BenchmarkStatistics, type BenchmarkSuite, Between, type Bidirectional, Binary, type BinaryExpression, type BinaryOperator, type BinarySearch, type BinarySearchOptions, type BinarySearchResult, type BinaryToDecimal, BinaryTreeNode, BindGroupLayout, BindGroupLayoutEntry, type Binding, type BindingKind, type BitAnd, BitDepth, type BitNot, type BitOr, type BitXor, type Blake3, BlendComponent, BlendFactor, BlendState, BlendTreeChild, BlochSphereCoordinates, Block, BlockBody, BlockHash, BlockHeader, type BlockStatement, Bone, BoneTransform, type BooleanFieldValidator, type BoundVars, BoundedContext, type BoundingBox, Bounds, Box, Brand, BrandCache, BrandedNumber, BrandedString, type BreadcrumbItem, BreakingChange, BreakingChangeCompatibilityReport, BreakingChangeGuard, BreakingChangeMigrationComplexity, BreakingChangeMigrationPath, BreakingChangeMigrationStep, BreakingChangePreventionConfig, BreakingChangeReport, BreakingChangeRule, BreakingChangeSeverity, BreakingChangeSummary, BreakingChangeType, BreakingChanges, type Breakpoint, type BreakpointAction, type BreakpointCondition, type BreakpointLocation, type BreakpointType, type BubbleSort, type BucketSort, type BufferedChannel, type BuildConfig, BuildError, BuildHint, BuildHintType, BuildResult, type BuildStateMachine, BuildWarning, type Builder, Bulkhead, BundleAnalysis, BundleInfo, BundleSuggestion, BundleSummary, BusEvent, BusSubscription, type BusinessDayConfig, type BusinessDaysBetween, type BusinessError, BusinessLayer, ButtonAccessibilityProps, CNOT, type CORSConfig, type CPUMetric, type CPUProfile, type CPUUsage, type CRC32, type CSRFConfig, type CSRFToken, CSVConfig, CSVHeader, CSVParseOptions, CSVParseResult, CSVRow, CSVStringifyOptions, type Cache, type CacheAside, type CacheCluster, type CacheCompressionOptions, type CacheDecoratorOptions, type CacheEntry, type CacheInvalidation, type CacheKey, type CacheKeyBuilder, type CacheNode, type CacheOptions, type CacheSerializer, type CacheStats, type CacheStrategy, type CacheValue, type Cached, CachedCompute, CachedIntersection, CachedKeyOf, CachedProperty, CachedUnion, CachedValue, type CalendarConfig, type CalendarDate, type CalendarMonth, type CalendarType, type CallExpression, type CallFrame, type CallStack, CamelCase, CamelCaseKeys, type CanTransition, CapitalizeAll, Capsule, Case, type Catch, type CatchHandler, type CatchOptions, type Cbrt, type CelsiusToFahrenheit, type CelsiusToKelvin, type CertificateCredentials, Chain, type ChainContext, type ChainDecorators, ChainId, type ChainLink, ChainedHandler, Change, ChangeDetectionOptions, ChangeDetectionResult, ChangeType, ChangedAPI, type ChangedProperties, type Channel, type ChannelBuffer, ChannelMergerOptions, ChannelSplitterOptions, type CheckAgainst, type CheckAll, type CheckEffect, CheckboxAccessibilityProps, type Checkpoint, type CheckpointConfig, type Checksum, ChecksumAddress, type ChecksumAlgorithm, ChorusEffect, type Chunk, ChunkInfo, ChunkingOptions, type ChurchBoolean, type ChurchList, type ChurchNumeral, type ChurchPair, type CipherText, Circle, CircleCIConfig, CircleCIJob, CircleCIStep, type CircuitBreaker, type CircuitBreakerConfig, type CircuitBreakerState, type CircuitBreakerStats, CircuitDepth, CircuitGate, CircuitWidth, type Clamp, type ClassBody, type ClassBuilder, type ClassDeclaration, type ClassDecorator, type ClassDecoratorContext, type ClassFieldDecoratorContext, type ClassGetterDecoratorContext, type ClassMethodDecoratorContext, type ClassSetterDecoratorContext, ClassicalRegister, type ClassificationResult, type CleanAll, CleanArchitectureLayers, type Closed, CloudFormation, Code, CodeAnalysis, type GenerateFromSchema as CodeGenerateFromSchema, type CodeGenerator, type CodeGeneratorOptions, CodeMetrics, type CodeMotion, CodeQualityMetrics, Codemod, CodemodChange, CodemodContext, CodemodError, CodemodResult, CodemodRule, type ColdFlow, type CollationOptions, type CollationType, type ColliderShape, type Collision, Color, ColorAttachment, ColorContrast, ColorContrastRecommendation, ColorContrastResult, ColorFormat, type ColorScheme, ColorStop, ColumnHeaderAccessibilityProps, type ColumnSchema, type Combination, type CombineLatest, type Command, type CommandBus, type CommandHandler, type CommandResult, type CommitResult, CommonErrorType, type CommonExtension, type CommonGlob, type CommonMimeType, type CommonSubexpression, Compact, CompactRepresentation, type Comparator, CompareFunction, CompatMode, CompatV1, CompatV2, type Compatibility, CompatibilityCheck, CompatibilityIssue, CompatibilityIssueType, CompatibilityLevel, CompatibilityReport, type Compatible, CompatibleIntersection, CompatibleKeys, CompatibleMerge, CompatibleWith, CompilationFactor, CompilationTime, type CompiledMessage, type Literal$1 as CompilerLiteral, type CompilerPlugin, type PluginHook as CompilerPluginHook, type PluginOptions as CompilerPluginOptions, type Symbol$1 as CompilerSymbol, type Token as CompilerToken, ComplementaryProps, type Complete, type CompleteEntries, type CompleteKeys, type CompleteValues, ComplexityClass, ComplexityFunction, ComplexityMetrics, ComplexityReport, ComplianceStatus, type Component, type ComponentProps, type Compose, type ComposeAll, type ComposeDecorators, type ComposeEffects, ComposeMigrations, type ComposeSubstitutions, type ComposeTypes, type CompositeGuard, type CompoundKind, type CompressionLevel, CompressorEffect, ComputePassDescriptor, ComputePipelineDescriptor, ComputeShader, ComputeState, type Computed, type ConditionOperator, ConditionalHandler, Cone, type Confidence, type Config, type ConfigAccessor, type ConfigBuilder, type ConfigCallback, type ConfigChange, type ConfigDefaults, type ConfigError, type ConfigField, type ConfigFieldType, type ConfigFileFormat, type ConfigLoader, type ConfigLoaderOptions, type ConfigPipeline, type ConfigPriority, type ConfigRule, type ConfigRules, type ConfigSchema, type ConfigSource, type ConfigStep, type ConfigValidationError, type ConfigValidationResult, type ConfigValidator, type ConfigValue, type ConfigWarning, type ConfigWatcher, type ConflictError, type ConnectionPoolConfig, ConnectivityType, type Consensus, ConsensusMechanism, type ConsensusState, type ConsistencyConfig, type ConsistencyLevel, type ConsistencyModel, type ConsistentHash, type Const, type ConstantAnalysis, ConstantCase, type ConstantFold, type ConstantFoldOptions, type ConstantValue, type Constraint, type ConstraintType, ConstraintViolation, type Construct, ContentInfoProps, type ContentSecurityPolicy, ContextBoundary, ContextMap, ContextRelationship, ContractABI, ContractDeployOptions, ContractDeployResult, ContractEvent, ContractMethod, ContrastRatio, type ConvLayer, ConversionMap, ConvertFrom, type ConvertTimezone, ConvertTo, type Coordinator, type CopyOptions, Core, CoreSystem, Corpus, CorpusMetadata, type Cos, type Count, type CountBy, type CountOccurrences, type Counter, type CountingSort, type CountryCode, type Covariance, type Coverage, type CoverageChange, type CoverageConfig, CoverageMetric, CoverageMetrics, type CoverageProvider, type CoverageRange, type CoverageReport, type CoverageReporter, type CoverageThreshold, type CoverageWatermarks, CreateEvent, CreateMigrationMap, type Credentials, type CrossReference, type CryptoContext, type CryptoTimestamp, CubicBezier, type Currency, type CurrencyFormatOptions, type CurrentState, type Curried, type Curry, type CustomError, type CustomValidator, Cylinder, type Model as DBModel, type Transaction as DBTransaction, type ValidationRule as DBValidationRule, DataAccessLayer, type DataAugmentationConfig, type DataBreakpoint, DataGrid, type DataLoader, DataOnly, type DataTransform, DataTransformationResult, DataValidationResult, type DatabaseConnectionOptions, type DatabaseError, type Dataset, type DateComponents, type DateFieldValidator, type DateFormat, type DateFormatOptions, type DateInterval, type DateMock, type DateRange, type DateRange as Range, type DateString, type Day, type DayOfWeek, type DayOfYear, type DaysBetween, type DaysInMonth, type DaysInYear, type DeadCode, type DeadCodeAnalysis, DeadCodeInfo, type DeadCodeLocation, type DeadCodeOptions, type DeadCodeType, type DeadLetterQueue, Debounce, DebounceOptions, DebtItem, type Debug, type DebugCapabilities, type Checksum$1 as DebugChecksum, type DebugCommand, type DebugConfiguration, type DebugContext, type DebugEvent, type DebugEventType, type DebugInfo, type DebugMessage, type DebugProtocol, type DebugRequest, type DebugResponse, type DebugScope, type DebugSession, type Source as DebugSource, type DebugStackFrame, type DebugStatus, type DebugSymbol, type DebugSymbolKind, type DebugThread, DebugType, type WatchOptions as DebugWatchOptions, Dec, Decimal128, type DecimalToBinary, type DecimalToHex, type DecimalToOctal, DecomposedTransform, type Deconstruct, DecorativeImageProps, type Decorator, type CacheOptions$1 as DecoratorCacheOptions, type DecoratorFactory, type DecoratorOptions, type Decrypted, type Deduce, type DeduceAll, type DeduceArray, type DeduceDeep, type DeduceFrom, type DeduceKey, type DeduceParams, type DeducePromise, type DeduceProperty, type DeduceReturn, type Deduplicate, type DeduplicateProperties, DeepMerge, DeepMutable, DeepNonNullable, DeepNullable, DeepOmit, DeepOmitPaths, DeepOptional, DeepPartial, type DeepPartialConfig, DeepPick, DeepPickPaths, DeepReadonly, type DeepReplaceValue, DeepRequired, DeepRequiredProperties, type DeepResolve, DeepSimplify, Default, type DefaultOptions, type DefaultRules, Deferred, DeferredEvaluation, type DefineMetadata, DegradedValue, type DegreesToGradians, type DegreesToRadians, DelayEffect, type DeleteBuilder, type DeleteOptions, type DenseLayer, DensityMatrix, type Dependencies, type Dependency, DependencyAudit, type DependencyEdge, type DependencyGraph, DependencyInfo, type DependencyNode, DependencyRelation, DependencyRelationType, DependencyRule, DependencySummary, type DependencyTree, type DependencyType, type DependencyVersion, type Deprecated, type DeprecatedOptions, DeprecatedSince, DeprecationAnnouncement, DeprecationChange, DeprecationCheckOptions, DeprecationCheckResult, DeprecationInfo, DeprecationLevel, DeprecationMigrationWarning, DeprecationRegistry, DeprecationStatus, DeprecationTracker, DeprecationWarning, type Depth, DepthStencilAttachment, DepthStencilState, Dequeue, type DerivedKey, type Describe, DetailedError, DetectBreakingChanges, type DetectionResult, type Diagnostic, type DiagnosticAction, DiagnosticCode, DiagnosticInfo, DiagnosticItem, type DiagnosticLevel, DiagnosticLocation, DiagnosticMessage, type DiagnosticRange, type DiagnosticReporter, DiagnosticSeverity, type DiagnosticSuggestion, DialogAccessibilityProps, type Direction, DirectionalLight, type Directory, type DirectoryEntry, type DirectoryTree, DispatchError, DispatchResult, type Display, type DisplayNamesOptions, type DisplayNamesType, type Dispose, type DistTags, DistortionEffect, type DistributedCache, type DistributedLock, type Partition as DistributedPartition, type Divide, type DocAccessibility, type DocBreadcrumb, type DocCategory, type DocCompleteness, type DocConfig, type DocCoverage, type DocEntry, type DocEntryKind, type DocError, type DocFile, type DocFooter, type DocFormat, type DocEntry$1 as DocGenEntry, type DocGenOptions, type TypeDoc as DocGenTypeDoc, type DocIndex, type DocLayout, type DocLayoutConfig, type DocMenu, type DocMetadata, type DocMethod, type DocMetrics, type DocNavigation, type DocOutput, type DocPage, type DocParameter, type DocPlugin, type DocQuality, type DocSearch, type SearchOptions as DocSearchOptions, type DocSection, type DocSidebar, type DocSidebarItem, type DocSource, type DocStats, type DocTheme, DockerCompose, DockerComposeBuild, DockerComposeConfig, DockerComposeDeploy, DockerComposeHealthCheck, DockerComposeLoggingConfig, DockerComposeNetwork, DockerComposeResources, DockerComposeSecret, DockerComposeService, DockerComposeVolume, DockerContainer, DockerContainerStatus, DockerCopyInstruction, DockerHealthCheck, DockerHealthStatus, DockerImage, DockerPort, DockerVolume, Dockerfile, Document, DocumentEmbedding, DocumentMetadata, type Documentation, DocumentationLink, DomainEvent, DomainService, DotCase, Double, type Drop, type DropLastN, type DropWhile, DuplicateModule, type Duplicates, DuplicationMetrics, type Duration, type DurationString, type E$1 as E, EIP1559Transaction, EIP2930Transaction, EIP4844Transaction, ENSName, ENSResolver, EQBand, ESBuildImport, ESBuildLocation, ESBuildMessage, ESBuildMetafile, ESBuildOnLoadArgs, ESBuildOnLoadOptions, ESBuildOnLoadResult, ESBuildOnResolveArgs, ESBuildOnResolveOptions, ESBuildOnResolveResult, ESBuildOptions, ESBuildOutputFile, ESBuildPlugin, ESBuildPluginBuild, ESBuildResolveResult, ESBuildResult, ESLintConfig, ESLintFix, ESLintMessage, ESLintOverride, ESLintParserOptions, ESLintPlugin, ESLintResult, ESLintRule, ESLintRuleConfig, ESLintRuleContext, ESLintRuleFixer, EVMChainId, type EarlyStoppingConfig, EasingFunction, EasingPreset, EasingType, type Effect, type EffectAnnotation, type EffectHandler, type EffectRow, type EffectType, type Effectful, type Either, type EitherMatcher, type EitherOps, type EliminateDeadCode, Ellipse, type EmailConstraint, Embedding, type EmbeddingConfig, type EmbeddingResult, EmbeddingVector, EmotionResult, EmotionType, type EmptyEnv, type EncodingFormat, type EncodingResult, type Encrypted, type EncryptedData, type Encryption, type EncryptionAlgorithm, type EncryptionOptions, type EndOfDay, EndOfLife, type EndOfMonth, type EndOfWeek, type EndOfYear, type EndsWith, Enqueue, EntangledPair, EntangledState, type Entity, type EntityComponent, type EntityId, EntityMention, type EntityQuery, type EntitySystem, EntityType, type Enumerable, type EnumerableOptions, type EnvChain, type EnvConfig, type EnvField, type EnvMapping, type EnvTransform, type EnvValidation, type EnvVar, type EnvVars, Envelope, type EnvironmentAwareConfig, type EnvironmentConfigLoader, type EnvironmentName, type Eq, EqualizerEffect, type Equals, type Err, type AssertionError as ErrorAssertionError, type AssertionResult as ErrorAssertionResult, type AsyncResult$1 as ErrorAsyncResult, type ErrorBase, type ErrorBoundaryProps, ErrorCatalog, ErrorCatalogEntry, ErrorCategory, type ErrorChain, type ErrorCode, ErrorContext, ErrorDetails, type ErrorFactory, ErrorFilter, type ErrorHandler, type ErrorHandlerResult, type ErrorHandlingStrategy, type ErrorInstance, type ErrorLog, type ErrorMessage, ErrorMessageProps, ErrorRecovery, ErrorReport, ErrorReporterConfig, type ErrorSeverity, type ErrorStack, ErrorSuggestion, type ErrorType, EstimateGasParams, EvaluateExpression, type EvaluateResult, Event$1 as Event, EventAggregator, type EventBus, type EventBusConfig, type EventBusHandler, type EventBusMiddleware, EventConstructor, EventDispatcher, type EventEmitter, EventHandler, EventHandlerMap, EventHistory, EventId, EventListener, type EventListenerOptions, type EventMap, EventMetadata, EventNameFromHandler, EventPattern, type EventPayload, EventQueue, EventSourcedAggregate, type StepStatus as EventStepStatus, type EventStore, type EventStream, EventSubscription, EventSystemDomainEvent, EventSystemDomainEventHandler, EventTarget$1 as EventTarget, type EventTimestamp, EventType, EventTypes, type EventVersion, type Every, Exact, ExactType, type Exactly, type Example, ExampleUsage, type ExceptionBreakpoint, Exclusive, type ExecutionContext, type ExecutionResult, type ExecutionStatus, type ExecutionStep, type Exp, type Expand, type ExpandRecursively, ExpandType, ExpectAny, ExpectEqual, type ExpectError, ExpectExtends, ExpectFalse, type ExpectMethods, ExpectNever, ExpectNotExtends, ExpectTrue, ExpectUnknown, ExpectationValue, type ExpectedErrors, type ExplainType, type ExportDeclaration, type ExpressHandler, type ExpressMiddleware, type ExpressNextFunction, type ExpressRequest, type ExpressResponse, type ExpressRoute, type ExpressionStatement, type ExtendEnv, type Extends, type ExtendsType, type Extension, type ExtensionConfig, type ExtensionContext, type ExtensionHandler, type ExtensionPoint, type ExtensionRegistry, type ExtensionSchema, type ExtractClass, type ExtractConfigFromSchema, type ExtractConstructor, type ExtractFunction, type ExtractFunctionKeys, type ExtractKeysByValue, type ExtractMethod, type ExtractNonFunctionKeys, type ExtractOptionalKeys, type ExtractOptions, ExtractPayload, type ExtractProperty, type ExtractRequiredKeys, ExtrapolationMode, FFTResult, type FIFOCache, type FNV1a, type EncryptionAlgorithm$1 as FSEncryptionAlgorithm, type Extension$1 as FSExtension, type HashAlgorithm as FSHashAlgorithm, type WatchOptions$1 as FSWatchOptions, type Factorial, type Factory, type FahrenheitToCelsius, type Failure, type FailureDetector, FallbackType, Fast, type FastifyHandler, type FastifyPlugin, type FastifyReply, type FastifyRequest, type FastifyRoute, type FastifySchema, type FatalError, type FeatureFlag, type FeatureFlagConfig, type FeatureFlagVariant, type FeatureFlags, type FeatureTargeting, type Fibonacci, Fidelity, type FieldError, type File$1 as File, type FileContent, type FileCoverage, type FileEncoding, type FileFlags, type FileHash, type FileMetadata, type FileMode, type FileOptions, type FilePermission, type FileStats, type FileType, type FileWatch, type Filter, FilterEffect, FilterKeys, type FilterOperator, FilterType, type Final, type FinallyHandler, type FindAll, type FindLastIndex, FirstParameter, type Fix, type Fixture, type FixtureConfig, type FixtureContext, type FixtureData, FlangerEffect, Flatten$1 as Flatten, type FlattenAll, type FlattenDepth, type FlattenIntersection, FlattenNamespace, type FlattenType, type FlattenType$1 as FlattenTypeInference, type FlattenUnionToTuple, type Flip, type FlipArgs, type FlipFn, type Floor, type Flow, type FlowController, type FlowState, FlushCache, FocusEvent, FocusManager, FocusState, FocusTrap, FocusVisibility, FocusableElement, type FoldResult, type FoldableExpression, type FooterLink, ForEach, type ForStatement, ForceEvaluate, type ForkJoinResult, FormAccessibilityProps, FormDataEntry, FormDataValue, FormFieldAccessibility, type FormatDate, type FormatOptions, FormatResult, type FormattedCode, type FormattedMessage, type FormattedOutput, type Formatter, ForwardPort, FragmentShader, FragmentState, FrameAnimationOptions, FrameElement, type TestReporterType as FrameworkTestReporterType, type FreeVars, Frequency, type FrequencyMap, type FreshContext, type FreshHandler, type FreshMiddleware, type FreshPlugin, type FreshRoute, type FreshVar, type FromEvent, type FromPromise, FromTsToolbelt, FromTypeFest, FromUtilityTypes, Front, type Frozen, type FunctionAnalysis, type FunctionBreakpoint, type FunctionBuilder, type FunctionDeclaration, FunctionKeys, FunctionOnly, type FunctionOptimization, type Either$1 as FunctionalEither, type Err$1 as FunctionalErr, FunctionalImageProps, type Left as FunctionalLeft, type None as FunctionalNone, type Ok as FunctionalOk, type Result as FunctionalResult, type Right as FunctionalRight, type Some as FunctionalSome, type Functor, FungibleTokenBalance, type GCD, GCPResource, GHZState, GPUShaderStageFlags, GainOptions, type GameAction, type AnimationClip$1 as GameAnimationClip, type AudioClip as GameAudioClip, type AudioListener as GameAudioListener, type AudioSource as GameAudioSource, type Camera as GameCamera, type EasingFunction$1 as GameEasingFunction, type Material as GameMaterial, type Mesh as GameMesh, type GameReducer, type Scene as GameScene, type SceneGraph as GameSceneGraph, type SceneNode as GameSceneNode, type Shader as GameShader, type SoundEffect as GameSoundEffect, type GameState, type GameStore, type Texture as GameTexture, type TextureFormat as GameTextureFormat, type GameTime, type Timer as GameTimer, type Tween as GameTween, type GamepadState, GasEstimate, GasFees, GasLimit, GasPrice, GateCondition, GateConditionResult, GateFidelity, GateResult, Gateway, type GatewayConfig, type GatewayMiddleware, type GatewayRoute, type Gauge, type Generalize, type Generate, type ASTNode$1 as GenerateASTNode, type GenerateAll, type GenerateDocs, type GenerateFromJSON, type GenerateFromOpenAPI, type GeneratedClass, type GeneratedCode, type GeneratedFunction, type GeneratedInterface, type GeneratedMethod, type GeneratedParameter, type GeneratedPosition, type GeneratedProperty, type GeneratedType, type GenerationOptions, GenericTree, type GetMetadata, type GetMetadataKeys, type GetOwnMetadata, type Getter, GitHubJob, GitHubStep, GitHubWorkflow, GitLabArtifacts, GitLabCache, GitLabJob, GitLabPipeline, GitLabService, type GlobPattern, type GlobalErrorHandler, type GossipConfig, type GossipMessage, type GossipNodeState, GracefulDegradation, type GradiansToDegrees, Gradient, GradientType, Grammar, GrammarRule, Graph, GraphEdge, GraphEdges, GraphHasCycle, GraphNode, GraphNodes, GraphPath, GraphQLArgs, GraphQLContext, GraphQLEnumType, GraphQLFieldResolver, GraphQLFieldTypes, GraphQLFlatSelection, GraphQLFragment, GraphQLInputObjectType, GraphQLInputType, GraphQLInterfaceType, GraphQLMutation, GraphQLObjectType, GraphQLOutputType, GraphQLQuery, GraphQLResolveInfo, GraphQLResolver, GraphQLReturn, GraphQLScalarType, GraphQLSchema, GraphQLSelection, GraphQLSelectionSet, GraphQLSubscription, GraphQLToType, GraphQLType, GraphQLUnionType, type GreaterThan, type GreaterThanOrEqual, GridAccessibilityProps, GridCellAccessibilityProps, type GroupBy, Grover, type GuardedType, type HKDF, type HKT, type Either$2 as HKTEither, type Just as HKTJust, type Maybe as HKTMaybe, type Monad as HKTMonad, type Nothing as HKTNothing, HSL, HSLA, HSV, type HTTPBody, type HTTPHeaders, type HTTPMethod, type Middleware as HTTPMiddleware, type HTTPRequest, type HTTPRequestOptions, type HTTPResponse, type HTTPStatus, Hadamard, type Handle, HandlerDecoratorOptions, HasExactKeys, type HasKey, HasKeys, type HasMetadata, HasMethod, HasProperties, HasProperty, type HasRuntimeCheck, type Hash$1 as Hash, type HashAlgorithm$1 as HashAlgorithm, type HashFunction, type HashInput, type HashOutput, type HashResult, type HashedValue, type HaveCommon, Head$1 as Head, type HealthCheck, type HealthComponent, type HealthIndicator, type HealthReport, type HeapEdge, type HeapMap, type HeapNode, type HeapSort, type Heartbeat, type HeartbeatConfig, HelmChart, HelmRelease, HelmValues, HelmValuesFile, HelpExample, HelpInfo, HelpMessage, HemisphereLight, type Hex, HexColor, type HexToDecimal, Hexagon, type HigherKind, type HintCategory, type HintLevel, type HintSuggestion, HintTextProps, type Histogram, type HistoryEntry, type HistoryEvent, type HistoryEventType, type HitRate, type HonoContext, type HonoHandler, type HonoMiddleware, type HonoRoute, type Hook, type HookCallback, type HookConfig, type HookContext, type HookExecutor, type HookResult, type HookSubscriber, type HotFlow, HotPath, type Hours, type HumanDuration, type CalendarType$1 as I18nCalendarType, type DateFormat$1 as I18nDateFormat, type TimeFormat as I18nTimeFormat, IKChain, IKSolverConfig, IKSolverType, IKTarget, INIConfig, INIParseOptions, INIStringifyOptions, type IO, type IOOps, type IPAddress, type ISODate, type ISODateTime, type ISOTimestamp, type IV, type Identifier, type Identity, If, type IfStatement, ImageAccessibilityProps, Immutable, ImpactAnalysis, ImpactRecommendation, ImpactScope, type ImportDeclaration, type ImportSpecifier, type Impure, type InRange, type InRangeExclusive, type InRangeInclusive, InboundPort, Inc, IncompatibleKeys, IncrementalType, IndexBuffer, type IndexSchema, type Infer, type InferArgs, type InferArrayElement, type InferArrayShape, type InferCommon, type InferContext, type InferEffect, type InferEngine, type InferError, type InferErrorCode, type InferFunctionParam, type InferFunctionShape, type GetTypeCategory as InferGetTypeCategory, type InferIntersectionElement, type InferObjectShape, type InferObjectValue, type InferPromise, type InferResult, type InferReturn, type InferSourceLocation, type InferTupleElement, type TypeName as InferTypeName, type InferUnionElement, type InferenceResult, type InferenceRule, InformativeImageProps, type InhibitRule, Init, type Initialize, type InitializeOptions, type Inline, type InlineCall, type InlineCandidate, type InlineOptions, type InlineResult, type InlineSnapshot, type InlineThreshold, InputAccessibilityProps, type InputState, type InsertBuilder, type InsertionSort, type Inspect, InspectType, type InstallOptions, type InstallResult, type InstanceStatus, type Instantiate, Int32, type InterfaceBuilder, type Interleave, InternedString, InterpolateFunction, type InterpolatedMessage, type InterpolationOptions, type Intersection, type Intersperse, type IntervalObservable, IntroducedIn, InvalidType, type InvalidationEvent, type InvalidationRule, type InvalidationStrategy, IsAny, IsArray, type IsBusinessDay, IsCompatible, type IsCoprime, IsEmail, IsEmptyObject, IsEmptyQueue, IsEmptyStack, IsEmptyString, IsEmptyTuple, IsEqual, type IsEven, type IsFinite, type IsFloat, type IsInfinite, type IsInteger, IsIntersection, type IsLeapYear, type IsLiteral, type IsNaN, type IsNegative, IsNever, type IsNull, type IsNullable, IsNumeric, type IsObject, type IsOdd, type IsOptional, type IsOptionalType, type IsPositive, type IsPrime, type IsPrimitive, IsPromise, type IsReadonly, type IsReadonlyType, type IsSubset, type IsSuperset, type IsTerminal, IsTuple, IsURL, IsUUID, type IsUndefined, IsUnion, IsUnknown, IsValidAddress, type IsValidDate, IsValidJSON, type IsVoid, type IsWeekday, type IsWeekend, type IsYupSchema, type IsZero, type IsZodSchema, type Iso, type IsolationLevel, Iterate, type JSDoc, type JSDocExample, type JSDocParam, type JSDocReturn, type JSDocTag, type JSDocThrows, type JSDocTypeParam, JSONArray, type JSONConfig, JSONMergePatch, JSONObject, type JSONOptions, JSONPatch, JSONPath, JSONPointer, JSONPrimitive, JSONSchema, JSONValue, type JWT, type JWTAlgorithm, type JWTHeader, type JWTPayload, type JWTSignOptions, type JWTVerifyOptions, type JavaScriptOptions, JenkinsPipeline, JenkinsStage, JenkinsStep, JobResult, Join, type JoinPath, Joint, JsonRpcProvider, JsonRpcRequest, JsonRpcResponse, K8sAffinity, K8sConfigMap, K8sContainer, K8sContainerPort, K8sDeployment, K8sEnvVar, K8sEnvVarSource, K8sHandler, K8sIngress, K8sLifecycle, K8sNodeAffinity, K8sNodeSelector, K8sNodeSelectorTerm, K8sObjectMeta, K8sPod, K8sPodAffinity, K8sPodAffinityTerm, K8sPodSecurityContext, K8sPodSpec, K8sProbe, K8sProjectedVolumeSource, K8sResourceRequirements, K8sSecret, K8sSecurityContext, K8sService, K8sServicePort, K8sToleration, K8sTopologySpreadConstraint, K8sVolume, K8sVolumeMount, KebabCase, type KelvinToCelsius, type Key, KeyBinding, KeyCode, type KeyDerivationOptions, KeyEvent, KeyHandler, type KeyLength, type KeyManagement, type KeyPair, type KeyState, type KeyStatus, type KeyType, type KeyUsage, KeyboardNavigation, KeyboardShortcut, type KeyboardState, Keyframe, KeyframeBase, KeyframeInterpolation, KeyframeSequence, KeyframeValue, Keys, KeysByValueType, KeysOfType, type Keyword, type Kind, type Kind2, type Kind3, type KindArrow, type KindCheck, type KindConstructor, type KindError, type LCM, LFOOptions, type LFUCache, type LN10, type LN2, type LOG10E, type LOG2E, type LRUCache, LabelAccessibilityProps, type LamportClock, LandmarkProps, LandmarkType, type LanguageCode, LanguageModel, LanguagePair, Last$1 as Last, type LastIndexOf, type Layer, type LayerConfig, type LayerType, LayeredArchitectureConfig, Lazy, LazyArrayElement, LazyAwaited, LazyChain, LazyCompute, LazyConditional, LazyKey, LazyMap, LazyParameters, LazyReturnType, type LeaderElection, LeafPaths, type LeakedObject, type Lease, type Left$1 as Left, type LeftShift, Legacy, LegacyAPI, LegacyAlias, LegacyGas, LegacyTransaction, type Lens, type LensPath, type Set$1 as LensSet, type LessThan, type LessThanOrEqual, type Level, LibraryFeatures, LicenseCheck, LicenseInfo, LicensePolicy, LicenseSummary, LicenseViolation, type LifecycleHook, type LifecycleOptions, Light, LightBase, LightType, LightWeight, LighthouseScore, LimiterEffect, Line, LineStrip, type LinearSearch, LinkAccessibilityProps, LinkedList, LiquidityPool, type ListConcat, type ListFilter, type ListFind, type ListFormatOptions, type ListFormatStyle, type ListFormatType, ListHead, type ListIncludes, type ListLength, ListNode, type ListReverse, ListTail, ListboxAccessibilityProps, ListenerOptions, Literal$2 as Literal, LiteralBoolean, LiteralNumber, LiteralString, type LiveCode, LiveRegion, type LivenessCheck, type LoadBalancer, type LoadBalancerStrategy, type LoadError, type LoadErrorCode, type LoadOptions, type LoadResult, type LocalTime, type Locale, type LocaleCode, type LocaleConfig, type LocaleDetection, type LocalizedCurrency, type LocalizedDate, type LocalizedNumber, type LocalizedTime, type Lock, type LockAcquireResult, LockAcquisition, type LockEntry, type LockFile, type LockFileOptions, type LockFormat, type LockOptions, type LockResult, type Locked, type Log, type Log10, type Log2, type LogContext, type LogEntry, LogFilter, type LogLevel, type LogOptions, type LogTransport, type Logged, type Logger, type LoggerConfig, type AlertConfig$1 as LoggingAlertConfig, type HealthCheckResult as LoggingHealthCheckResult, type LogEntry$1 as LoggingLogEntry, type MetricsRegistry as LoggingMetricsRegistry, type TraceContext as LoggingTraceContext, LogicalQubit, Long, type LongestCommonPrefix, type LookupEnv, type LoopAnalysis, type LoopOptimization, LoosePartial, type LossFunction, LowerCase, type MACAlgorithm, type MACResult, type MD5, MIDIAftertouchEvent, MIDIControlChangeEvent, MIDIController, MIDIEvent, MIDINote, MIDINoteNumber, MIDINoteOffEvent, MIDINoteOnEvent, MIDIPitchBendEvent, MIDIProgramChangeEvent, MIDISequence, MIDISystemExclusiveEvent, MIDITrack, type MLMetric, type MQTTConnectOptions, type MQTTHandler, type MQTTPacket, type MQTTPacketType, type MQTTPayload, type MQTTProperties, type MQTTPublishOptions, type MQTTQoS, type MQTTSubscribeOptions, type MQTTTopic, type MachineConfig, type Macro, type MacroBody, type MacroContext, type MacroExpansion, type MacroParam, type MacroResult, MainContentProps, MaintainabilityIndex, MaintainabilityMetrics, MakeAsync, MakeOptional, type MapDelete, type MapGet, type MapHas, type MapKeys, type MapOperator, type MapSet, type MapType, type MapValues, MarkType, Match, Material$1 as Material, MaterialBase, Matrix2x2, Matrix3x3, Matrix4x4, Matrix4x4Flat, type MatrixTensor, type Max, type MaxElement, MaxKey, type MaxLength, type MaxValue, type Maybe$1 as Maybe, type MaybeOps, type Mean, MeasurementOutcome, MeasurementResult, type Median, type MedianElement, type MemberExpression, type Membership, type MembershipEntry, type MembershipState, type MembershipStatus, type MembershipUpdate, type Memoize, type MemoizeOptions, type Memoized, type MemoryAddress, type MemoryDisassembly, type MemoryLeakDetection, type MemoryMetric, type MemoryReadResult, type MemoryRegion, type MemorySnapshot, type MemoryStatistics, type MemoryUsage, type MemoryValue, type MemoryWriteResult, MenuAccessibilityProps, type MenuItem, MenuItemAccessibilityProps, Merge, MergeAll, MergeAllObjects, type MergeConfigs, type MergeDecoratorResults, type MergeDeduplicated, type MergeSort, type MergeTypes, type MergedConfig, type MermaidClass, type MermaidClassDiagram, type MermaidOptions, type MermaidRelationship, type MessageFormat, MessagePackExtension, MessagePackOptions, MessagePackType, MessagePackValue, type MessageParams, type MessageQueue, type GenerateFromSchema$1 as MetaGenerateFromSchema, type GetTypeCategory$1 as MetaGetTypeCategory, type TypeName$1 as MetaTypeName, type MetadataEntry, type MetadataKey, type MetadataMap, type MetadataStorage, type MetadataValue, type MethodDecorator, type MethodDefinition, type MethodOptions, type Metric, type MetricType, type MetricsConfig, type MetricsRegistry$1 as MetricsRegistry, type Microservice, type Middleware$1 as Middleware, type MiddlewareConfig, type MiddlewareContext, type MiddlewarePipeline, type MiddlewareResult, MigrateFromV1, MigrateToV2, type MigrationActionDown, type MigrationActionUp, MigrationChange, MigrationChangeType, MigrationComplexity, MigrationConfig, MigrationContext, MigrationDiff, MigrationEffort, MigrationError, MigrationHistory, type MigrationHistoryEntry, MigrationMap, MigrationPath, MigrationPipeline, MigrationPlan, MigrationProgress, type MigrationRecord, MigrationReport, MigrationResult, MigrationRule, MigrationState, MigrationStatus, MigrationStep, MigrationSuggestion, MigrationWarning, type MimeType, type MimeTypeFromExtension, type Min, type MinElement, MinKey, type MinLength, type MinValue, type MinificationOptions, type MinifiedType, type Minify, type MinifyType, Minimal, type Minutes, MismatchDetails, MismatchKind, type MissRate, MissingProperty, MitigationStrategy, type MkdirOptions, type Mock, type MockCall, type MockConfig, type MockFactory, type MockFunction, type MockImplementation, type MockResult, type MockReturn, type Mode, type ModeElement, type Model$1 as Model, type ModelAttribute, type ModelConfig, type ModelHook, type ModelParams, type ModelRelation, type ModelScope, type ModelWeights, type Module, type ModuleAnalysis, type ModuleConfig, type ModuleExport, type ModuleImport, ModuleInfo, type ModuleLoader, type ModuleMock, type ModuleOptimization, ModuleReason, type Modulo, type Monad$1 as Monad, type Monitor, type MonitorResult, type MonitorStatus, type HealthCheckResult$1 as MonitoringHealthCheckResult, type Monoid, type Monomorphize, type Month, MorphAnimation, MorphTarget, MorphWeights, Morpheme, MorphemeType, MorphologicalFeatures, MotionMediaQuery, MotionPreference, MotionSafeAnimation, type MountOptions, type MouseState, type MoveOptions, type Mu, MultiLabelResult, MultiQubitGate, type MultiSortOptions, type MultiSourceConfig, MultiToken, MultipartConfig, type Multiply, MultisampleState, MusicalInterval, Mutable, MutexState, NLMTask, type NPMConfig, type Narrow, type NarrowBy, type NarrowByTag, type NarrowTo, type NarrowWithDiscriminator, NavigationDirection, NavigationProps, type Neg, type NegatedExpectMethods, type NestController, type NestDecoratorMetadata, type NestFilter, type NestGuard, type NestInterceptor, type NestModule, type NestPipe, type NestService, type HTTPStatus$1 as NetHTTPStatus, NetworkConfig, type NetworkError, type NetworkInterface, type NeuralNetworkArchitecture, type NextState, NoNullish, type NodeInfo, type NodeStatusType, type NonDuplicates, NonFunctionKeys, NonFungibleToken, NonNullable$1 as NonNullable, type Nonce, type None$1 as None, type NormalizationLayer, NormalizationOptions, Normalize, type NormalizeAll, type NormalizePath, Not, type NotFoundError, type NotValidator, NoteName, NotePitch, type NthParameter, type NthRoot, type Nu, Nullable, type NullableOption, type NumberFieldValidator, type NumberFormat, type NumberFormatOptions, type NumberSanitizer, type NumberToString, type NumberingSystem, type NumericEqual, type NumericNotEqual, type NumericRange, type OAuthConfig, type OAuthCredentials, type OAuthProviderConfig, type OAuthProviderType, type OAuthToken, ObjectEntries, type ObjectExpression, type ObjectFieldValidator, ObjectFilter, ObjectId, ObjectInvert, ObjectMap, ObjectOmitByType, ObjectPath, ObjectPickByType, type Objective, type Observable, type Observer, type OctalToDecimal, Octave, type Ok$1 as Ok, type OmitByValue, OmitPartial, OmitRequired, type OmitTypeAtPath, type Open, type OperatorFunction, type OperatorName, type BinaryOperator$1 as OptBinaryOperator, type TypeAlias as OptTypeAlias, type UnaryOperator as OptUnaryOperator, type Optimization, OptimizationConfig, type OptimizationContext, OptimizationImprovement, type OptimizationLevel, type OptimizationOptions, type OptimizationPass, type OptimizationPipeline, type OptimizationResult, type OptimizationRule, type OptimizationStats, OptimizationStrategy, OptimizationType, type Optimize, type OptimizeDeep, type OptimizeFor, OptimizeInference, Optimized, type OptimizedType, type Optimizer, type Option, OptionAccessibilityProps, type OptionMatcher, Optional, OptionalKeys, Optionalize, Or, type OrValidator, type Ord, type Ordering, type OriginalPosition, OscillatorNodeOptions, OscillatorOptions, OutboundPort, OutdatedPackage, type OutputEvent, OutputFile, type OutputFormat, type OutputMetadata, type Over, type PBKDF2, PBRMaterial, type PNPMConfig, type PackOptions, type PackResult, type PackageExports, type PackageMeta, type PackageName, type PackagePlugin, type PackageScript, type PackageVersion, type PackedFile, PadEnd, PadStart, type Panic, PannerOptions, Paragraph, type ParallelOptions, type ParameterDecorator, type ParameterOptions, type Parameters$1 as Parameters, ParcelConfig, ParcelNamerOptions, ParcelTransformerOptions, ParentPath, ParseCSV, type ParseDate, type ParseEnvResult, type ParseError, ParseExpression, ParseJSON, ParseNode, type ParsePath, type ParseTree, ParseURL, type Parser, type ParserConfig, type ParserResult, PartOfSpeech, type PartialApply, type PartialConfig, type PartialObserver, type Participant, type ParticipantStatus, type PartitionConfig, type PartitionKey, type PartitionStrategy, PascalCase, PascalCaseKeys, type PasswordHashConfig, type PasswordHashOptions, type PasswordHashResult, type PasswordVerificationResult, type Path$1 as Path, type PathDepth, PathExists, PathLeaf, PathLength, PathParams, type PathParts, type PathSegment, PathValue, Paths, type Pattern, type PatternMatch, PatternMatcher, PatternResult, PatternSubscription, PauliBasis, PauliX, PauliY, PauliZ, PayloadFromEvent, Peek, type Percentile, type Perfect, type PerfectOmit, type PerfectPartial, type PerfectPick, type PerfectRequired, type Performance, type PerformanceAlert, PerformanceAudit, type PerformanceBenchmark, PerformanceBudgetResult, PerformanceDiagnostic, type PerformanceEntry, type PerformanceHealthCheck, type PerformanceHint, PerformanceHintInfo, PerformanceIssue, type PerformanceMeasure, type PerformanceMetric, PerformanceOpportunity, PerformanceOptimization, PerformanceOptimizationSuggestion, PerformanceSuggestion, type PerformanceTrace, type Permission, type PermissionCheck, type PermissionCheckResult, type PermissionCondition, type PermissionDeny, type PermissionGrant, type PermissionSet, type Permutation, type Person, PhaseGate, PhaserEffect, type PhiAccrualConfig, PhongMaterial, type PhysicsBody, type PhysicsMaterial, type PickByValue, PickNonNullable, PickNullable, PickPartial, PickRequired, type PickTypeAtPath, type Pipe, type PipeAll, Pipeline, PipelineRun, PipelineStage, PitchDetectionResult, type LockEntry$1 as PkgLockEntry, type Package as PkgPackage, type PluginConfig as PkgPluginConfig, type PluginHook$1 as PkgPluginHook, type Registry as PkgRegistry, type RegistryConfig as PkgRegistryConfig, type PlainText, Plane, type Plugin, type PluginAPI, type PluginConfig$1 as PluginConfig, type PluginConfigProperty, type PluginConfigSchema, type PluginContext, type PluginError, type PluginEventBus, PluginInterface, type PluginLifecycle, type PluginLifecycleHook, type PluginLogger, type PluginManager, type PluginQuery, type PluginResult, type PluginStore, type PluralForm, type PluralRule, Point, Point2D, Point3D, PointLight, type Policy, type PolicyCondition, type PolicyContext, type PolicyEffect, type PolicyResult, type PolicyRule, Polyfill, Polygon, type Polymorphic, PoolPair, Pooled, type PoolingLayer, Pop, type Port, Pose, type Position, type Position2D, type Position3D, type PositionTick, PostingListEntry, type Power, Precompute, PrecomputedValue, type Predicate, type PredicateOps, type Prediction, PrefixKeys, type PrepareResult, PresentationLayer, Presenter, PrettierConfig, type Pretty, PrettyType, type PrimeFactors, PrimitiveState, type PrintOptions, type Printable, type Printer, PriorityQueue, type Prism, type PrismaCreateInput, PrivateKey, type Probability, ProcessingUnit, type Product, type ProductElements, Production, type ProfileFrame, type ProfileHotspot, type ProfileNode, type ProfileResult, type ProfileStack, type ProfileStatistics, type Profiler, Projection, PromiseFulfilledResult, PromiseRejectedResult, PromiseResult, PromiseSettledResult, PromiseValue, PropagationController, PropagationPath, PropagationPhase, type PropertyDecorator, type PropertyDefinition, type PropertyDiff, type PropertyOptions, type PropsWithChildren, type ProtoEnum, ProtoExtension, type ProtoField, type ProtoFieldType, ProtoFile, type ProtoMessage, type ProtoMethod, type ProtoService, type Protocol$1 as Protocol, type ProtocolContext, type ProtocolEncoding, type ProtocolHandler, type ProtocolMessage, type ProtocolVersion, type PubSub, PublicKey, type PublishConfig, type PublishOptions, type Publisher, type Pure, Push, QAOA, QAOptions, QAResult, QECCode, QFT, Quad, QualityGate, QuantumAlgorithm, QuantumBackend, QuantumCircuit, QuantumGate, QuantumHardware, QuantumJob, QuantumRegister, QuantumResult, QuantumSimulatorConfig, QuantumState, QuantumTeleportation, QuantumVolume, type Quarter, type Quartiles, Quaternion, Qubit, QubitAmplitude, QubitArray, QubitState, type Query, type QueryBus, type QueryHandler, QueryParams, type QueryResult, Queue, QueueConfig, type QueueConsumer, type QueueMessage, QueuePriority, QueueProcessor, type QueueProducer, QueueSize, QueuedEvent, QuickFix, QuickFixAction, QuickFixInfo, type QuickSort, type QwikComponent, type QwikEvent, type QwikServerFunction, type QwikSignal, type QwikStore, type QwikUseContext, type QwikUseSignal, type QwikUseStore, type RBAC, type RBACConfig, type REPL, type REPLCommand, type REPLContext, type REPLOptions, type REPLResult, RGB, RGBA, type RTLConfig, type RTLLocaleChecker, type RadiansToDegrees, RadioAccessibilityProps, type RadixSort, type RaftConfig, type RandomBytes, type RangeStep, type RankN, type RateLimit$1 as RateLimit, type RateLimitConfig, type RateLimitError, type RateLimitStatus, RateLimiter, type Ratio, Ray, type DebounceOptions$1 as ReactiveDebounceOptions, type Effect$1 as ReactiveEffect, type EffectOptions as ReactiveEffectOptions, type ReactivePrimitive, type RetryOptions as ReactiveRetryOptions, type Scheduler as ReactiveScheduler, type SignalOptions as ReactiveSignalOptions, type ReactiveStore, type Subscription as ReactiveSubscription, type TakeOptions as ReactiveTakeOptions, type ThrottleOptions as ReactiveThrottleOptions, type ReactiveValue, type Zip as ReactiveZip, type ReadConcernLevel, type ReadOnly, type ReadOptions, type ReadThroughCache, type ReadableStreamLike, type Reader, type ReaderOps, type ReadinessCheck, ReadonlyKeys, type ReadonlySignal, type RealTimeChannel, type RealTimeClient, type RealTimeMessage, type RealTimeSubscription, type Reconstruct, type ReconstructConstraints, type ReconstructDeep, type ReconstructInfer, type ReconstructStrict, RecoverableError, RecoveryOption, type RecoveryOptions, type RecoveryResult, type RecoveryStrategy, Rect, Rectangle, type RecurrentLayer, type Recurse, type RecurseUntil, type RecurseWhile, RecursionLimit, Reduce, ReduceComplexity, ReduceIntersection, type ReduceOperator, ReduceRecursion, ReduceUnion, type Reference, type ReferenceGraph, type ReferenceMap, type ReferrerPolicy, type Refinement, type Reflect, type RegionConfig, type RegionType, type Registry$1 as Registry, type RegistryAuth, type RegistryConfig$1 as RegistryConfig, type RegistryEntry, type RegistryPackage, type RegistryVersion, type Reject, RelatedDiagnostic, RelationMention, type RelationSchema, RelationType, type RelativePath, type RelativeTime, type RelativeTimeFormat, type RelativeTimeOptions, type RelativeTimeUnit, ReliabilityMetrics, type RemixAction, type RemixActionData, type RemixLoader, type RemixLoaderData, type RemixMeta, type RemixRoute, type RemoteConfigProvider, type RemoveAll, type RemoveAt, type RemoveDuplicates, type RemoveFirst, RemoveSpaces, RemovedAPI, RemovedIn, type RemovedProperties, RenameKeys, RenameType, RenderPassDescriptor, RenderPipelineDescriptor, RenderTargetInfo, type Renderable, Repeat, Replace, ReplaceAll, type ReplaceValue, Replacement, ReplayOptions, ReplayResult, type ReplaySubject, type Replica, type ReplicaSet, type ReplicaSetConfig, type ReplicaStatus, type Replication, type ReplicationStrategy, type ReportConfig, type ReportFormat, ReportedError, ReportedWarning, Repository, RequireArray, RequireAtLeastOne, RequireExactlyOne, RequireFunction, RequireKeys, RequireNotNullish, Required$1 as Required, type RequiredConfig, RequiredKeys, type Resolution, type ResolutionError, type ResolutionErrorCode, type ResolutionOptions, type ResolutionResult, type ResolveArray, ResolveBrandCache, type ResolveOptional, type ResolvePath, type ResolvePromise, type ResolveStrategy, type ResolvedPackage, type Resource, RestructureType, type Result$1 as Result, type ResultMatcher, type ResultOps, type Retry, type RetryConfig, type RetryOptions$1 as RetryOptions, type ReturnStatement, type ReturnType$1 as ReturnType, ReverbEffect, Reverse$1 as Reverse, ReverseString, type Right$1 as Right, type RightShift, RiskLevel, type Role, type RoleBasedPermission, type RoleHierarchy, type RolePermission, type RoleSet, RollupBuild, RollupChunkInfo, RollupConfig, RollupLoadResult, RollupModuleInfo, RollupOutput, RollupOutputAsset, RollupPlugin, RollupRenderChunkResult, RollupResolveIdResult, RollupTransformResult, RollupTreeshake, RollupWarning, type RotateLeft, type RotateRight, Rotation, RotationGate, type Round, type Route, RowAccessibilityProps, RowHeaderAccessibilityProps, type RuleCondition, type RuleContext, type RulePattern, type RuleReplacement, type RuleResult, type RuleSet, RunTypeTest, type RuntimeGuard, type SHA256, type SHA512, type SQLCondition, type SQLExpression, type SQLJoin, type SQLQuery, type SQRT1_2, type SQRT2, type SSLConfig, SWCCompressOptions, SWCConfig, SWCFormatOptions, SWCMangleOptions, SWCMinifyOptions, SWCParser, SWCPlugin, SWCReactRefresh, SWCReactTransform, SWCTransform, SWCTransformResult, SafeAnimationType, type SafeHTML, SafeHandler, type SafeURL, type Saga, type SagaCompensation, type SagaResult, type SagaStatus, type SagaStep, type Salt, SampleFormat, SampleRate, SamplerDescriptor, type SanitizationChange, type SanitizationRule, type SanitizeResult, type SanitizedInput, type Sanitizer, type Satisfies, type ScalarTensor, Scale, ScheduleOptions, ScheduledJob, Scheduler$1 as Scheduler, type SchedulerAction, type SchedulerLike, type AssertionFunction$1 as SchemaAssertionFunction, type SchemaBuilder, type SchemaField, type Scope, type ScopeChain, type ScopeEntry, type ScopeType, ScreenReaderAnnouncement, ScreenReaderText, type ScriptOptions, type ScriptResult, type ScriptRunner, type Find$1 as SearchFind, type FindIndex$1 as SearchFindIndex, type Flatten$2 as SearchFlatten, type FlattenDeep$1 as SearchFlattenDeep, type Includes$1 as SearchIncludes, type SearchIndex, type SearchIndexEntry, type SearchIndexMetadata, type IndexOf$1 as SearchIndexOf, type None$2 as SearchNone, type Partition$1 as SearchPartition, type SearchResult, type Reverse$2 as SearchReverse, type Some$1 as SearchSome, type Unique$1 as SearchUnique, type Seconds, type Secret, type SecretConfig, type SecretOptions, type SecretProvider, type SecretSource, type SecretValue, SecurityAudit, type EncryptedData$1 as SecurityEncryptedData, type EncryptionAlgorithm$2 as SecurityEncryptionAlgorithm, type HashAlgorithm$2 as SecurityHashAlgorithm, type IV$1 as SecurityIV, type JWT$1 as SecurityJWT, type JWTHeader$1 as SecurityJWTHeader, type Key$1 as SecurityKey, type KeyPair$1 as SecurityKeyPair, SecurityMetrics, SecurityRecommendation, SecurityReport, type Salt$1 as SecuritySalt, type SignatureAlgorithm as SecuritySignatureAlgorithm, type SigningKey as SecuritySigningKey, SecuritySummary, type VerificationKey as SecurityVerificationKey, type SegmentationResult, type SelectBuilder, type SelectableChannel, type SemVer, type SemVerComparator, type SemVerDiff, type SemVerRange, type SemVerSatisfies, SemanticFrame, SemanticRole, Semaphore, type Semigroup, SemitoneInterval, type SendEvent, Sentence, SentimentLabel, SentimentResult, SentimentScore, type ServiceClient, type ServiceConfig, type ServiceDiscovery, type ServiceError, type HealthStatus as ServiceHealthStatus, type ServiceInstance, type ServiceRegistry, type ServiceRequest, type ServiceResponse, type RetryPolicy as ServiceRetryPolicy, type Session, type SessionConfig, type SessionData, type SessionId, type SessionStore, type SetAdd, type SetDifference, type SetHas, type SetIntersection, type SetIsEmpty, type SetIsSubset, type SetRemove, type SetTypeAtPath, type SetUnion, type Setter, ShaderBinding, ShaderInput, ShaderLanguage, ShaderOutput, ShaderProgram, ShaderStage, type ShakeMessage, type ShallowResult, Shape, type ShardMap, type Sharding, SharedStructure, Shor, type Shorten, type ShowType, type SideEffect, SideEffectInfo, type SideEffectsAnalysis, type Sign, type Signal, type SignalValue, type Signature, type SignatureAlgorithm$1 as SignatureAlgorithm, type SignatureResult, type SignatureVerificationResult, type Signed, type SignedData, type SigningKey$1 as SigningKey, type Similarity, Simplify, type SimplifyAll, SimplifyForCompiler, type SimplifyIntersection, type SimplifyUnion, type Sin, SingleQubitGate, type Singleton, Size2D, Size3D, SizeMetrics, Skeleton, SkipCheck, SkipLinkProps, SkipTest, SkipToContentProps, type Slice, SmartContract, SnakeCase, SnakeCaseKeys, type Snapshot, type SnapshotConfig, type SnapshotMatch, type SnapshotResult, type SnapshotSerializer, type SocialLink, type SocketAddress, type Solve, type Some$2 as Some, type Sort, type SortOptions, type SortOrder, type SourceLocation, type SourceLocationWithFile, type SourceMap, type SourceMapConsumer, type SourceMapGenerator, type SourceMapMapping, type SourceRange, type Span, type SpanEvent, type SpanKind, type SpanLink, type SpanOptions, type SpanStatus, SpatialOrientation, SpatialPannerOptions, SpatialPosition, type SpawnPoint, SpecialTokens, Spectrogram, Spectrum, Sphere, type Splice, Split, SplitByComma, SplitPath, SpotLight, SpringConfig, SpringPreset, SpringState, SpriteAnimation, SpriteAnimationDef, type SpriteComponent, SpriteFrame, SpriteSheet, type Spy, type SpyConfig, type SpyFactory, type Sqrt, Stack, StackSize, type StackTrace, StageResult, StakingInfo, StandardInterpolate, type StartOfDay, type StartOfMonth, type StartOfWeek, type StartOfYear, type StartsWith, type State, type StateHistory, type StateMachine, type State$1 as StateMachineState, type StateOps, type Transition as StateTransition, StateVector, type StdDev, StencilFaceState, StencilOperation, type StepResult, type StepType, StepsEasing, type StoppedEvent, type StoppedReason, StorageBuffer, type StoreAction, type StoreMiddleware, type StoreReducer, type StoredPlugin, type Stream, type StreamChunk, type StreamError, type StreamReader, type StreamValue, type StreamWriter, StrictExclude, type StrictExtends, StrictExtract, type StringFieldValidator, StringLength, type StringSanitizer, StringToArray, type StringToNumber, StringifyCSV, StringifyJSON, StripNever, StripNull, type StripNullable, type StripNullish, type StripOptional, StripUndefined, type Stub, type StubFactory, type Subject, type Subscriber, Subscription$1 as Subscription, SubscriptionFilter, SubscriptionGroup, SubscriptionManager, type SubscriptionOptions, type SubstituteVar, type Substitution, type SubstitutionScope, type Subtract, type SubtractDays, type SubtractMonths, type SubtractYears, type Success, SuffixKeys, SuggestionInfo, type SuiteResult, type Sum, type SumElements, type Summary, Sunset, SunsetPhase, SunsetPolicy, SunsetSchedule, SuperdenseCoding, SurfaceCode, type SvelteKitAction, type SvelteKitLayout, type SvelteKitLoad, type SvelteKitPage, type SvelteKitServer, SwapParams, type SymbolFlags, type SymbolScope, type SymbolTable, type SymmetricDifference, SyncEventHandler, SynthVoice, type Synthesize, SynthesizerPatch, type SystemError, type TCPFlags, type TCPPacket, type TCPSocketOptions, type TCPState, type TOMLConfig, TOMLDateTime, TOMLDocument, TOMLKey, TOMLTable, TOMLValue, type TRPCErrorFormatter, type TRPCProcedureOptions, type TRPCRouterWithMiddleware, TSLintConfig, type TTLCache, TabAccessibilityProps, TabListAccessibilityProps, TabPanelAccessibilityProps, TabbableOptions, TableAccessibilityProps, type TableSchema, type TagLength, Tail$1 as Tail, type TailCall, TailRecursive, type Take, type TakeFirst, type TakeLast, type TakeLastN, type TakeWhile, type Tan, type TargetingOperator, type Task, TaskError, type TaskOps, TaskOptions, TaskPriority, TaskResult, TaskStatus, TechnicalDebt, type Temperature, type Template, type TemplateEntry, type TemplateError, type TemplateLiteral, type TemplateRegistry, type TemplateResult, type TemplateString, type TemplateVariable, type TemplateVariables, type Tensor, type Tensor3D, type Tensor4D, type TensorDType, type TensorRank, type TensorShape, TermIndex, TermInfo, TerraformConfig, TerraformConnection, TerraformModule, TerraformOutput, TerraformProvider, TerraformProvisioner, TerraformResource, TerraformVariable, type TestAll, type AssertionError$1 as TestAssertionError, type AssertionResult$1 as TestAssertionResult, type TestCase, type TestConfig, type TestContext, type TestContextProvider, TestCoverage, type TestEnvironmentConfig, type TestEnvironmentType, type TestError, type TestEvent, type TestEventHandler, TestFile, type TestFilter, type TestGroup, type TestHook, type TestHookFunction, type TestHooksConfig, TestInfo, type TestMetadata, TestPerformance, type TestReporterInterface, type TestResult, type TestResultType, type TestRunner, type TestRunnerResult, type TestSetup, type SnapshotOptions as TestSnapshotOptions, type TestSuite, type TestSummary, type TestTeardown, type TestTiming, type TestUtilities, TextChunk, TextureDescriptor, TextureDimension, TextureFormat$1 as TextureFormat, TextureRef, TextureUsage, TextureViewDescriptor, type ThreadStatus, ThreeQubitGate, Throttle, ThrottleOptions$1 as ThrottleOptions, Thunk, type TimeAgo, type TimeAgoOptions, type TimeFormat$1 as TimeFormat, type TimeOptions, type TimeString, type TimeUnit, type TimeZone, type Timed, type Timeout, type TimeoutError, type TimeoutOptions, type TimerMock, type TimerObservable, type Timestamp, type Timezone, type TimezoneOffset, type Timing, type TimingConfig, type TimingEnd, type TimingResult, type TimingStart, ToTsToolbelt, ToTypeFest, type ToUnixTimestamp, ToUtilityTypes, Toffoli, Token$1 as Token, TokenAllowance, TokenBalance, TokenInfo, type TokenStream, type TokenType, type Tokenizer, type TokenizerConfig, TokenizerOptions, ToolbeltDeepPartial, ToolbeltUnionExclude, ToolbeltUnionPick, TopicInfo, TopicModelingResult, Torus, type Totient, type TouchPoint, type TouchState, TouchTargetProps, TouchTargetSize, type Trace, type TraceConfig, type TraceContext$1 as TraceContext, type TraceSpan, type TraceStatus, type Tracer, type TrainingCallback, type TrainingConfig, type TrainingLogs, Transaction$1 as Transaction, type TransactionAction, type TransactionCoordinator, TransactionFee, TransactionHash, TransactionInput, type TransactionLog, type TransactionOptions, TransactionOutput, TransactionReceipt, type TransactionResult, TransactionSignature, type TransactionState, TransactionType, type Transform, type TransformChange, type TransformComponent, type TransformContext, TransformMatrix, TransformOptions, type TransformPass, type TransformPassResult, type TransformPipeline, type TransformResult, TransformRule, type TransformScheduler, type TransformStreamLike, TransformType, type TransformVisitor, type Transformer, type TransformerConfig, Transition$1 as Transition, type TransitionAction, type TransitionCondition, TransitionDelay, TransitionDuration, TransitionProperty, TransitionShorthand, TransitionTimingFunction, type Translation, type TranslationKey, type TranslationMap, TranslationMetadata, type TranslationOptions, type TranslationResource, TranslationResult, type TranslationValue, type Traversal, type TraverseOptions, type TraverseVisitor, Tree, TreeAccessibilityProps, TreeDepth, TreeFlatten, TreeItemAccessibilityProps, TreeLeaves, type TreeNode, TreePath, type TreeShake, type TreeShakeOptions, TreeShakingResult, TremoloEffect, Triangle, Trim, TrimLeft, TrimRight, type Trunc, type Try, type TryCatchResult, type TryResult, TupleLength, TurbopackConfig, TurbopackModule, TurbopackOutput, TurbopackPlugin, TurbopackResolve, TurbopackRule, type TwoPhaseCommit, TwoQubitGate, type TypeAbs, TypeAnalysis, type TypeApp, type TypeAssertionCheck, type TypeAtPath, TypeBenchmarkConfig, TypeBenchmarkResult, type TypeBuilder, TypeCache, type TypeCategory, type TypeCheckError, type TypeComparison, TypeComplexity, TypeComplexityMetrics, TypeCoverage, type TypeDependency, type TypeDiagram, type TypeDiff, type Difference$1 as TypeDifference, type TypeDoc$1 as TypeDoc, type TypeDocExample, type TypeDocGeneric, type TypeDocKind, type TypeDocMethod, type TypeDocParam, type TypeDocProperty, type TypeDocumentation, type TypeEnv, TypeEq, TypeEvery, TypeFestCamelCase, TypeFestSnakeCase, TypeFilter, TypeFind, type TypeGraph, type TypeGraphEdge, type TypeGraphNode, type TypeHierarchy, TypeIdentity, TypeIncludes, type TypeInfo, type TypeInfoField, type TypeInfoMethod, type TypeMap, type TypeMapEntry, type TypeMapGet, type TypeMapHas, type TypeMapKeys, type TypeMapSet, type TypeMapValues, TypeMismatch, type TypeMismatchError, type TypePath, TypeProfileEntry, TypeProfilerConfig, TypeProfilerResult, type TypeReferenceGraph, type TypeScriptOptions, type TypeSet, type TypeSignature, TypeSize, TypeSome, type TypeStructure, type TypeTest, TypeTestResult, TypeTestSuite, TypeToGraphQL, type TypeTree, type TypeVar, TypedError, TypedEvent, type TypedEventTarget, type ConfigField$1 as TypesafeConfigField, type ConfigFieldType$1 as TypesafeConfigFieldType, type ConfigFileFormat$1 as TypesafeConfigFileFormat, type ConfigLoader$1 as TypesafeConfigLoader, type ConfigPriority$1 as TypesafeConfigPriority, type ConfigSchema$1 as TypesafeConfigSchema, type ConfigValidationResult$1 as TypesafeConfigValidationResult, type EnvConfig$1 as TypesafeEnvConfig, type EnvMapping$1 as TypesafeEnvMapping, type SecretConfig$1 as TypesafeSecretConfig, type UDPPacket, type UDPSocketOptions, type UIButton, type UIElement, type UIProgress, type UIText, type URLConstraint, type URLEncoded, URLEncodedOptions, type URLType, type UTCTime, type UUIDConstraint, type Ultimate, type UnaryExpression, type UnaryFunction, type UnaryOperator$1 as UnaryOperator, Unbrand, UncapitalizeAll, type UnchangedProperties, UncoveredTypes, type Uncurried, type Uncurry, UniformBuffer, type Unify, type Union, UnionToIntersection, UnionToTuple, type Unique$2 as Unique, type UniqueBy, type UniqueKeys, type UnitFormatOptions, type UnitType, type UniversalAPIHandler, UniversalBuildConfig, UniversalDataFormat, type UniversalMiddleware, type UnixMilliseconds, type UnixSeconds, type UnixTimestamp, UnlitMaterial, type UnsignedRightShift, type UnusedExports, UnwrapPromise, type Unzip, type Unzip3, type UpdateBuilder, type UpdateOperator, UpperCase, UseCase, type UsedExports, UtilityDeepPartial, UtilityDeepReadonly, UtilityMap, type VFSMount, type VFSNode, type VFSOperations, VQE, ValidPath, type ValidTransitions, type Validate, ValidateMigration, type ValidateOptions, type ValidationContext, type ValidationError, type ValidationErrors, type ValidationOptions, type ValidationResult, type ValidationRule$1 as ValidationRule, type Validator, ValidatorInfo, type ValidatorResult, type ValidationError$1 as ValidatorValidationError, ValueObject, ValueOf, type Variable, type VariableDeclaration, type VariableDeclarator, type VariablePresentationHint, type VariableTypeInfo, type VariableValue, type Variance, Vector2, type Vector2D, Vector3, type Vector3D, Vector4, type VectorClock, type VectorTensor, type Velocity, type VerificationKey$1 as VerificationKey, type Verified, type VerifyAll, VersionChangelog, VersionComparison, VersionCompat, VersionConstraint, VersionGate, VersionRange, VersionedAPI, VertexAttribute, VertexBuffer, VertexBufferLayout, VertexShader, VertexState, VestibularTrigger, type View, type VirtualFS, VirtualizedMiddleware, type VisitContext, type VisitResult, type Visitor, type VisualizationOptions, type TypeMap$1 as VisualizeTypeMap, VisuallyHiddenProps, ViteAlias, ViteBuild, ViteCORSOptions, ViteCSS, ViteCSSModules, ViteConfig, ViteDevServer, ViteESBuild, ViteFSServer, ViteHMROptions, ViteHTTPSOptions, ViteHotUpdateContext, ViteJSON, ViteLibOptions, ViteLoadResult, ViteModulePreload, ViteOptimizeDeps, VitePlugin, VitePostCSS, VitePreview, VitePreviewServer, ViteProxyConfig, ViteResolve, ViteResolveIdResult, ViteServer, ViteTransformResult, ViteWatchOptions, Vocabulary, type Vote, type VoteRequest, type VoteResponse, type Vulnerability, WCAGContrastRequirements, WCAGCriterion, WCAGLevel, WCAGTouchTargetRequirements, type WSCloseCode, type WSEvent, type WSFrame, type WSHandler, type WSMessage, type WSOpcode, type WSOptions, type WalkOptions, WalletAccount, WalletConnection, WalletConnectionStatus, WalletMetadata, WalletProvider, Warning, WarningConfig, WarningLevel, type WatchCallback, type WatchDetails, type WatchEvent, type WatchExpression, type WatchHandler, type WatchResult, WaveformAnalysis, WaveformOptions, WaveformType, type WebSocketConfig, type WebSocketEvent, type EventHandler$1 as WebSocketEventHandler, type WebSocketHandler, type WebSocketMessage, type WebSocketOptions, type WebSocketState, type Stream$1 as WebSocketStream, WebpackCache, WebpackCacheGroup, WebpackCallback, WebpackConfig, WebpackDependency, WebpackDevServer, WebpackLoader, WebpackLoaderContext, WebpackModule, WebpackOptimization, WebpackOutput, WebpackPerformance, WebpackPlugin, WebpackProxyConfig, WebpackResolve, WebpackResolvePlugin, WebpackRule, WebpackSplitChunks, WebpackStats, type WeekOfYear, type WhileStatement, type Widen, type WidenArrayElement, type WidenLiteral, type WidenTo, type Width, WildcardHandler, WillBeRemoved, Withdrawal, WordEmbedding, WordForm, type Worker, WorkerOptions, type WorkerPool, WorkerTask, type Workflow, type WorkflowDefinition, type WorkflowEngine, type WorkflowEngineConfig, type WorkflowError, type WorkflowErrorHandler, type WorkflowExecution, type WorkflowExecutor, type WorkflowHistory, type WorkflowInstance, type WorkflowPersistence, type RetryPolicy$1 as WorkflowRetryPolicy, type WorkflowStatus, type WorkflowStep, type StepStatus$1 as WorkflowStepStatus, type WorkflowTimeout, type WorkflowTransition, type Workspace, type WorkspaceConfig, type WorkspaceDependency, type WorkspaceEdge, type WorkspaceGraph, type WorkspaceOptions, type WorkspacesConfig, WrapPromise, WritableKeys, type WritableSignal, type WritableStreamLike, type WriteBehindCache, type WriteConcern, type WriteOnly, type WriteOptions, type WriteThroughCache, type Writer, type WriterOps, XComplexType, XMLAttribute, XMLAttributeGroup, XMLAttributes, XMLDocument, XMLElement, XMLGroup, XMLNode, XMLSchema, XPathExpression, XPathResult, XSimpleType, type YAMLConfig, YAMLDocument, YAMLError, YAMLNode, type YAMLOptions, YAMLPath, YAMLValue, type YarnConfig, type YearsBetween, type YupInput, type YupOutput, type Zip$1 as Zip, type Zip3, type ZipWith, type ZodArrayElement, type ZodInput, type ZodOutput, type ZodShape, type gRPCMethod, type gRPCRequest, type gRPCResponse, type gRPCService, type gRPCStatus, type gRPCStream };
36073
+ export { type ABAC, type ABACConfig, ABIError, ABIEvent, ABIFunction, ABIParameter, ABIType, type ACL, type ACLEntry, ADSREnvelope, type APIAuth, type APIBody, APIChange, type APICredentials, APIDiff, type APIDoc, type APIDocumentation, type APIEndpoint, type APIError, type APIGateway, type APIHeader, type APIMediaType, type APIParameter, type RateLimit as APIRateLimit, type APIResponse, type APISchema, type ARCCache, ARIAAutocompleteValue, ARIACurrentValue, ARIAHasPopupValue, ARIAInvalidValue, ARIALiveValue, ARIAOrientationValue, ARIAProperty, ARIAPropertyValue, ARIARelevantValue, ARIARole, ARIARoleCategory, ARIASortValue, ARIAState, type ASCIIGraph, type ASCIIGraphOptions, type ASCIITable, type ASCIITableColumn, type ASCIITableOptions, type ASCIITree, type ASCIITreeNode, type ASCIITreeOptions, type ASTDeclaration, type ASTExpression, type ASTNode, type ASTNodeType, type ASTProgram, type Property as ASTProperty, type ASTStatement, type ASTTransformer, type ASTVisitor, AWSResource, type Abs, type AbsolutePath, type AccessControl, AccessList, AccessListEntry, AccessibilityAnimationOptions, AccessibilityCheckResult, AccessibilityNode, AccessibilityNodeProperties, AccessibilityProps, AccessibilityRule, AccessibilityTree, AccessibilityViolation, AccessibleDescription, AccessibleName, AccessibleNameSource, type AccessorDecorator, type Action, type ActivationFunction, type ActivationLayer, Adapter, Add, type AddBusinessDays, type AddDays, AddEventListenerOptions, type AddHours, type AddMinutes, type AddMonths, type AddSeconds, AddStage, type AddWeeks, type AddYears, AddedAPI, type AddedProperties, Address, type Adler32, AffectedComponent, type AfterOptions, Aggregate, type AggregateEvents, AggregatedEvent, AggregationConfig, AggregationType, AggregationWindow, type Alert, type AlertAction, type AlertConfig, type AlertReceiver, type AlertRoute, type AlertRule, type AlertSeverity, type AlertStatus, type Find as AlgorithmFind, type FindIndex as AlgorithmFindIndex, type Flatten as AlgorithmFlatten, type FlattenDeep as AlgorithmFlattenDeep, type Includes as AlgorithmIncludes, type IndexOf as AlgorithmIndexOf, type Reverse as AlgorithmReverse, type Unique as AlgorithmUnique, AlignmentInfo, type AllIndices, type AllIndicesOf, type AllVars, type AlphaFeature, AltText, AmbientLight, AnalyserOptions, AnalysisIssue, AnalysisSuggestion, AnalysisSummary, type Analyze, AnalyzedFile, And, type Angle, Animation, AnimationBase, AnimationBlendTree, AnimationClip, type AnimationComponent, AnimationController, AnimationDirection, AnimationDuration, AnimationEvent, AnimationFillMode, AnimationFrame, AnimationLayer, AnimationOptions, AnimationParameter, AnimationParameterValue, AnimationParameters, AnimationPlaybackState, AnimationState, AnimationTarget, AnimationTimeline, AnimationTrack, AnimationTransition, type Annotate, AnsibleHandler, AnsibleInventory, AnsiblePlaybook, AnsibleRole, AnsibleTask, type AppendEntriesRequest, type AppendEntriesResponse, type AppendOptions, type Applicative, type ApplicativeLift2, type ApplicativeV2, AppliedOptimization, type Apply, ApplyCodemod, type ApplyConstraint, type ApplyRule, type ApplySubstitution, type ApplyV2, ArchitectureConstraint, ArchitectureValidationResult, ArchitectureViolation, type Archive, type ArchiveEntry, type ArchiveFormat, type ArchiveOptions, type AreDisjoint, type AroundOptions, type Difference as ArrayDifference, ArrayElement, type ArrayEquals, type ArrayExpression, type ArrayFieldValidator, ArrayPaths, type Range as ArrayRange, type ArrowFunctionExpression, AspectSentiment, Assert, AssertEqual, AssertExtends, AssertHasProperty, AssertKeyof, type AssertKeys, type AssertNever, AssertNotNil, type AssertShape, AssertType, type AssertValues, type Assertion, type AssertionFunction, type AssertionMatcher, AssetInfo, type Assignable, type AssignmentOperator, type AstroFrontmatter, type AstroGlobal, type AstroLayout, type AstroProps, type AstroStaticPaths, type AsymmetricAlgorithm, type AsyncEffect, AsyncEventHandler, AsyncFailure, AsyncParameters, AsyncResult, type AsyncReturnType, AsyncReturnTypeFromPromise, type AsyncSubject, AsyncSuccess, type At, AtLeastOne, type AtOr, type AttachmentInfo, type AttentionConfig, type AttentionLayer, type Attribute, type AttributeValue, AudioBufferData, AudioChannel, AudioEffect, AudioEffectBase, AudioEncodingOptions, AudioFeatures, AudioFormat, AudioGraph, AudioGraphNode, AudioListenerOptions, AudioMetadata, AudioNodeConnection, AudioSample, AudioSourceNode, type AuthConfig, type AuthDoc, type AuthError, type AuthProvider, type AuthResult, type AuthStatus, type AuthToken, type AuthType, type Authentication, type AuthenticationError, type AuthorizationError, type AuthorizationOptions, type AuthorizationProvider, type AutoDoc, type AutoLabelRule, AvatarMask, type Average, AvroArraySchema, AvroEnumSchema, AvroField, AvroFixedSchema, AvroMapSchema, AvroPrimitiveType, AvroRecordSchema, AvroSchema, AvroUnionSchema, Awaited$1 as Awaited, AzureResource, type BPMNEvent, type BPMNEventTrigger, type BPMNEventType, type BPMNGateway, type BPMNGatewayCondition, type BPMNGatewayType, type BPMNProcess, type BPMNProcessType, type BPMNTask, type BPMNTaskType, BSONDocument, BSONValue, BabelConfig, BabelPlugin, BabelPreset, BabelTransformResult, Backport, type BackpressureConfig, type BackpressureState, type BackpressureStrategy, BackwardsCompatible, BannerProps, type Base64, type Base64URL, type BaseEvent, type BaseKind, BaseTransaction, BaselineComparison, type BasicCredentials, type Batch, BeatDetectionResult, type BeforeOptions, type BehaviorSubject, BellState, type Benchmark, type BenchmarkComparison, type BenchmarkConfig, type BenchmarkResult, type BenchmarkStatistics, type BenchmarkSuite, type Beta, type BetaFeature, Between, type BiDirectional, type Bidirectional, Binary, type BinaryExpression, type BinaryOperator, type BinarySearch, type BinarySearchOptions, type BinarySearchResult, type BinaryToDecimal, BinaryTreeNode, BindGroupLayout, BindGroupLayoutEntry, type Binding, type BindingKind, type BitAnd, BitDepth, type BitNot, type BitOr, type BitXor, type Blake3, BlendComponent, BlendFactor, BlendState, BlendTreeChild, BlochSphereCoordinates, Block, BlockBody, BlockHash, BlockHeader, type BlockStatement, Bone, BoneTransform, type BooleanFieldValidator, type BoundVars, BoundedContext, type BoundingBox, Bounds, Box, Brand, BrandCache, BrandedNumber, BrandedString, type BreadcrumbItem, BreakingChange, BreakingChangeCompatibilityReport, BreakingChangeGuard, BreakingChangeMigrationComplexity, BreakingChangeMigrationPath, BreakingChangeMigrationStep, BreakingChangePreventionConfig, BreakingChangeReport, BreakingChangeRule, BreakingChangeSeverity, BreakingChangeSummary, BreakingChangeType, BreakingChanges, type Breakpoint, type BreakpointAction, type BreakpointCondition, type BreakpointLocation, type BreakpointType, type BubbleSort, type BucketSort, type BufferedChannel, type BugReport, type BugSeverity, type BuildConfig, BuildError, BuildHint, BuildHintType, BuildResult, type BuildStateMachine, BuildWarning, type Builder, Bulkhead, BundleAnalysis, BundleInfo, BundleSuggestion, BundleSummary, BusEvent, BusSubscription, type BusinessDayConfig, type BusinessDaysBetween, type BusinessError, BusinessLayer, ButtonAccessibilityProps, CNOT, type CORSConfig, type CPUMetric, type CPUProfile, type CPUUsage, type CRC32, type CSRFConfig, type CSRFToken, CSVConfig, CSVHeader, CSVParseOptions, CSVParseResult, CSVRow, CSVStringifyOptions, type Cache, type CacheAside, type CacheCluster, type CacheCompressionOptions, type CacheDecoratorOptions, CacheEntry, type CacheInvalidation, CacheKey, type CacheKeyBuilder, type CacheNode, type CacheOptions, type CacheSerializer, type CacheStats, type CacheStrategy, type CacheValue, Cached, CachedCompute, CachedIntersection, CachedKeyOf, CachedProperty, CachedUnion, CachedValue, type CalendarConfig, type CalendarDate, type CalendarMonth, type CalendarType, type CallExpression, type CallFrame, type CallStack, CamelCase, CamelCaseKeys, type CanTransition, CapitalizeAll, Capsule, Case, type Catch, type CatchHandler, type CatchOptions, type Cbrt, type CelsiusToFahrenheit, type CelsiusToKelvin, type CertificateCredentials, Chain, type ChainContext, type ChainDecorators, ChainId, type ChainLink, ChainedHandler, Change, ChangeDetectionOptions, ChangeDetectionResult, ChangeType, ChangedAPI, type ChangedProperties, type Channel, type ChannelBuffer, ChannelMergerOptions, ChannelSplitterOptions, type CheckAgainst, type CheckAll, type CheckEffect, CheckboxAccessibilityProps, type Checkpoint, type CheckpointConfig, type Checksum, ChecksumAddress, type ChecksumAlgorithm, ChorusEffect, type Chunk, ChunkInfo, ChunkingOptions, type ChurchBoolean, type ChurchList, type ChurchNumeral, type ChurchPair, type CipherText, Circle, CircleCIConfig, CircleCIJob, CircleCIStep, type CircuitBreaker, type CircuitBreakerConfig, type CircuitBreakerState, type CircuitBreakerStats, CircuitDepth, CircuitGate, CircuitWidth, type Clamp, type ClassBody, type ClassBuilder, type ClassDeclaration, type ClassDecorator, type ClassDecoratorContext, type ClassFieldDecoratorContext, type ClassGetterDecoratorContext, type ClassMethodDecoratorContext, type ClassSetterDecoratorContext, ClassicalRegister, ClassificationResult, type CleanAll, CleanArchitectureLayers, type Closed, CloudFormation, Code, type CodeAction, type CodeActionKind, CodeAnalysis, type GenerateFromSchema as CodeGenerateFromSchema, type CodeGenerator, type CodeGeneratorOptions, type CodeLens, CodeMetrics, type CodeMotion, CodeQualityMetrics, Codemod, CodemodChange, CodemodContext, CodemodError, CodemodResult, CodemodRule, type ColdFlow, type CollationOptions, type CollationType, type ColliderShape, type Collision, Color, ColorAttachment, ColorContrast, ColorContrastRecommendation, ColorContrastResult, ColorFormat, type ColorScheme, ColorStop, ColumnHeaderAccessibilityProps, type ColumnSchema, type Combination, type CombineLatest, Command, CommandBus, CommandHandler, type CommandResult, type CommitResult, CommonErrorType, type CommonExtension, type CommonGlob, type CommonMimeType, type CommonSubexpression, Compact, CompactRepresentation, type Comparator, CompareFunction, CompatMode, CompatV1, CompatV2, type Compatibility, CompatibilityCheck, CompatibilityIssue, CompatibilityIssueType, CompatibilityLevel, CompatibilityReport, type Compatible, CompatibleIntersection, CompatibleKeys, CompatibleMerge, CompatibleWith, CompilationFactor, CompilationTime, type CompiledMessage, type Literal$1 as CompilerLiteral, type CompilerPlugin, type PluginHook as CompilerPluginHook, type PluginOptions as CompilerPluginOptions, type Symbol$1 as CompilerSymbol, type Token as CompilerToken, ComplementaryProps, type Complete, type CompleteEntries, type CompleteKeys, type CompleteValues, type CompletionContext, type CompletionItem, type CompletionItemKind, type CompletionProvider, ComplexityClass, ComplexityFunction, ComplexityMetrics, ComplexityReport, ComplianceStatus, type Component, type ComponentProps, type Compose, type ComposeAll, type ComposeDecorators, type ComposeEffects, ComposeMigrations, type ComposeSubstitutions, type ComposeTypes, type CompositeGuard, type CompoundKind, type CompressionLevel, CompressorEffect, ComputePassDescriptor, ComputePipelineDescriptor, ComputeShader, ComputeState, type Computed, type ConditionOperator, type ConditionalFeature, ConditionalHandler, Cone, type Confidence, type Config, type ConfigAccessor, type ConfigBuilder, type ConfigCallback, type ConfigChange, type ConfigDefaults, type ConfigError, type ConfigField, type ConfigFieldType, type ConfigFileFormat, type ConfigLoader, type ConfigLoaderOptions, type ConfigPipeline, type ConfigPriority, type ConfigRule, type ConfigRules, type ConfigSchema, type ConfigSource, type ConfigStep, type ConfigValidationError, type ConfigValidationResult, type ConfigValidator, type ConfigValue, type ConfigWarning, type ConfigWatcher, type ConflictError, type ConnectionPoolConfig, ConnectivityType, type Consensus, ConsensusMechanism, type ConsensusState, type ConsistencyConfig, type ConsistencyLevel, type ConsistencyModel, type ConsistentHash, type Const, type ConstantAnalysis, ConstantCase, type ConstantFold, type ConstantFoldOptions, type ConstantValue, type Constraint, type ConstraintType, ConstraintViolation, type Construct, type ConstructV2, ContentInfoProps, type ContentSecurityPolicy, ContextBoundary, ContextMap, ContextRelationship, ContractABI, ContractDeployOptions, ContractDeployResult, ContractEvent, ContractMethod, ContrastRatio, type ConvLayer, ConversionMap, ConvertFrom, type ConvertTimezone, ConvertTo, type Coordinator, type CopyOptions, Core, CoreSystem, Corpus, CorpusMetadata, type Cos, type Count, type CountBy, type CountOccurrences, type Counter, type CountingSort, type CountryCode, type Covariance, type Coverage, type CoverageChange, type CoverageConfig, CoverageMetric, CoverageMetrics, type CoverageProvider, type CoverageRange, type CoverageReport, type CoverageReporter, type CoverageThreshold, type CoverageWatermarks, CreateEvent, CreateMigrationMap, type Credentials, type CriteriaCheck, type CrossReference, type CryptoContext, type CryptoTimestamp, CubicBezier, type Currency, type CurrencyFormatOptions, type CurrentState, type Curried, type Curry, type CustomError, type CustomValidator, Cylinder, type Model as DBModel, type Transaction as DBTransaction, type ValidationRule as DBValidationRule, DataAccessLayer, type DataAugmentationConfig, type DataBreakpoint, DataGrid, type DataLoader, DataOnly, type DataTransform, DataTransformationResult, DataValidationResult, type DatabaseConnectionOptions, type DatabaseError, type Dataset, type DateComponents, type DateFieldValidator, type DateFormat, type DateFormatOptions, type DateInterval, type DateMock, type DateRange, DateRange as Range, type DateString, type Day, type DayOfWeek, type DayOfYear, type DaysBetween, type DaysInMonth, type DaysInYear, type DeadCode, type DeadCodeAnalysis, DeadCodeInfo, type DeadCodeLocation, type DeadCodeOptions, type DeadCodeType, type DeadLetterQueue, Debounce, DebounceOptions, DebtItem, type Debug, type DebugCapabilities, type Checksum$1 as DebugChecksum, type DebugCommand, type DebugConfiguration, type DebugContext, type DebugEvent, type DebugEventType, type DebugInfo, type DebugMessage, type DebugProtocol, type DebugRequest, type DebugResponse, type DebugScope, type DebugSession, type Source as DebugSource, type DebugStackFrame, type DebugStatus, type DebugSymbol, type DebugSymbolKind, type DebugThread, DebugType, type WatchOptions as DebugWatchOptions, Dec, Decimal128, type DecimalToBinary, type DecimalToHex, type DecimalToOctal, DecomposedTransform, type Deconstruct, DecorativeImageProps, type Decorator, type CacheOptions$1 as DecoratorCacheOptions, type DecoratorFactory, type DecoratorOptions, type Decrypted, type Deduce, type DeduceAll, type DeduceArray, type DeduceDeep, type DeduceFrom, type DeduceKey, type DeduceParams, type DeducePromise, type DeduceProperty, type DeduceReturn, type Deduplicate, type DeduplicateProperties, DeepMerge, DeepMutable, DeepNonNullable, DeepNullable, DeepOmit, DeepOmitPaths, DeepOptional, DeepPartial, type DeepPartialConfig, type DeepPartialV2, DeepPick, DeepPickPaths, DeepReadonly, type DeepReadonlyV2, type DeepReplaceValue, DeepRequired, DeepRequiredProperties, type DeepRequiredV2, type DeepResolve, DeepSimplify, Default, type DefaultOptions, type DefaultRules, Deferred, DeferredEvaluation, type DefineMetadata, DegradedValue, type DegreesToGradians, type DegreesToRadians, DelayEffect, type DeleteBuilder, type DeleteOptions, type DenseLayer, DensityMatrix, type Dependencies, type Dependency, DependencyAudit, type DependencyEdge, type DependencyGraph, DependencyInfo, type DependencyNode, DependencyRelation, DependencyRelationType, DependencyRule, DependencySummary, type DependencyTree, type DependencyType, type DependencyVersion, Deprecated, type DeprecatedOptions, DeprecatedSince, DeprecationAnnouncement, DeprecationChange, DeprecationCheckOptions, DeprecationCheckResult, DeprecationInfo, DeprecationLevel, DeprecationMigrationWarning, DeprecationRegistry, DeprecationStatus, DeprecationTracker, DeprecationWarning, type Depth, DepthStencilAttachment, DepthStencilState, Dequeue, type DerivedKey, type Describe, DetailedError, DetectBreakingChanges, type DetectionResult, type DevToolsCommand, Diagnostic, type DiagnosticAction, DiagnosticCode, DiagnosticInfo, DiagnosticItem, type DiagnosticLevel, DiagnosticLocation, DiagnosticMessage, type DiagnosticRange, type DiagnosticReporter, DiagnosticSeverity, type DiagnosticSuggestion, DialogAccessibilityProps, type Direction, DirectionalLight, type Directory, type DirectoryEntry, type DirectoryTree, DispatchError, DispatchResult, type Display, type DisplayNamesOptions, type DisplayNamesType, type Dispose, type DistTags, DistortionEffect, type DistributedCache, type DistributedLock, type Partition as DistributedPartition, type Divide, type DocAccessibility, type DocBreadcrumb, type DocCategory, type DocCompleteness, type DocConfig, type DocCoverage, type DocEntry, type DocEntryKind, type DocError, type DocExample, type DocFile, type DocFooter, type DocFormat, type DocEntry$1 as DocGenEntry, type DocGenOptions, type TypeDoc as DocGenTypeDoc, type DocIndex, type DocLayout, type DocLayoutConfig, type DocMenu, type DocMetadata, type DocMethod, type DocMetrics, type DocNavigation, type DocOutput, type DocOutputFormat, type DocPage, type DocParameter, type DocPlugin, type DocQuality, type DocRenderOptions, type DocRenderResult, type DocSearch, type SearchOptions as DocSearchOptions, type DocSection, type DocSidebar, type DocSidebarItem, type DocSource, type DocStats, type DocTemplate, type DocTemplateType, type DocTheme, DockerCompose, DockerComposeBuild, DockerComposeConfig, DockerComposeDeploy, DockerComposeHealthCheck, DockerComposeLoggingConfig, DockerComposeNetwork, DockerComposeResources, DockerComposeSecret, DockerComposeService, DockerComposeVolume, DockerContainer, DockerContainerStatus, DockerCopyInstruction, DockerHealthCheck, DockerHealthStatus, DockerImage, DockerPort, DockerVolume, Dockerfile, Document, DocumentEmbedding, DocumentMetadata, type Documentation, DocumentationLink, DomainEvent, DomainService, DotCase, Double, type Drop, type DropLastN, type DropWhile, DuplicateModule, type Duplicates, DuplicationMetrics, type Duration, type DurationString, type E$1 as E, EIP1559Transaction, EIP2930Transaction, EIP4844Transaction, ENSName, ENSResolver, EQBand, ESBuildImport, ESBuildLocation, ESBuildMessage, ESBuildMetafile, ESBuildOnLoadArgs, ESBuildOnLoadOptions, ESBuildOnLoadResult, ESBuildOnResolveArgs, ESBuildOnResolveOptions, ESBuildOnResolveResult, ESBuildOptions, ESBuildOutputFile, ESBuildPlugin, ESBuildPluginBuild, ESBuildResolveResult, ESBuildResult, ESLintConfig, ESLintFix, ESLintMessage, ESLintOverride, ESLintParserOptions, ESLintPlugin, ESLintResult, ESLintRule, ESLintRuleConfig, ESLintRuleContext, ESLintRuleFixer, EVMChainId, type EarlyStoppingConfig, EasingFunction, EasingPreset, EasingType, type Effect, type EffectAnnotation, type EffectConfig, type EffectFlatMap, type EffectHandler, type EffectList, type EffectMap, type EffectRow, type EffectRuntime, type EffectSafe, type EffectSequence, type EffectType, type EffectTypeV2, type EffectV2, type Effectful, type EffectfulV2, type Either, type EitherMatcher, type EitherOps, type EliminateDeadCode, Ellipse, type EmailConstraint, Embedding, type EmbeddingConfig, type EmbeddingResult, EmbeddingVector, EmotionResult, EmotionType, type EmptyEnv, type EncodingFormat, type EncodingResult, type Encrypted, type EncryptedData, type Encryption, type EncryptionAlgorithm, type EncryptionOptions, type EndOfDay, EndOfLife, type EndOfMonth, type EndOfWeek, type EndOfYear, type EndpointDoc, EndsWith, Enqueue, EntangledPair, EntangledState, Entity, type EntityComponent, type EntityId, EntityMention, type EntityQuery, type EntitySystem, EntityType, type Enumerable, type EnumerableOptions, type EnvChain, type EnvConfig, type EnvField, type EnvMapping, type EnvTransform, type EnvValidation, type EnvVar, type EnvVars, Envelope, type EnvironmentAwareConfig, type EnvironmentConfigLoader, type EnvironmentInfo, type EnvironmentName, type Eq, EqualizerEffect, type Equals, type Err, type AssertionError as ErrorAssertionError, type AssertionResult as ErrorAssertionResult, type AsyncResult$1 as ErrorAsyncResult, type ErrorBase, type ErrorBoundaryProps, ErrorCatalog, ErrorCatalogEntry, ErrorCategory, type ErrorChain, type ErrorCode, ErrorContext, ErrorDetails, type ErrorEffect, type ErrorFactory, ErrorFilter, type ErrorHandler, type ErrorHandlerResult, type ErrorHandlingStrategy, type ErrorInstance, type ErrorLog, type ErrorMessage, ErrorMessageProps, ErrorRecovery, ErrorReport, ErrorReporterConfig, type ErrorSeverity, type ErrorStack, ErrorSuggestion, type ErrorType, EstimateGasParams, EvaluateExpression, type EvaluateResult, Event$1 as Event, EventAggregator, EventBus, EventBusConfig, type EventBusHandler, EventBusMiddleware, EventConstructor, EventDispatcher, EventEmitter, EventHandler, EventHandlerMap, EventHistory, EventId, EventListener, type EventListenerOptions, EventMap, EventMetadata, EventNameFromHandler, EventPattern, EventPayload, EventQueue, EventSourcedAggregate, type StepStatus as EventStepStatus, EventStore, EventStream, EventSubscription, EventSystemDomainEvent, EventSystemDomainEventHandler, EventTarget$1 as EventTarget, EventTimestamp, EventType, EventTypes, type EventVersion, type Every, Exact, ExactType, type Exactly, type Example, ExampleUsage, type ExceptionBreakpoint, Exclusive, type ExecutionContext, type ExecutionResult, type ExecutionStatus, type ExecutionStep, type Exp, type Expand, type ExpandRecursively, ExpandType, ExpectAny, ExpectEqual, type ExpectError, ExpectExtends, ExpectFalse, type ExpectMethods, ExpectNever, ExpectNotExtends, ExpectTrue, ExpectUnknown, ExpectationValue, type ExpectedErrors, type Experimental, type ExperimentalAPI, type ExperimentalFeature, type ExperimentalFeatureFlag, type ExplainType, type ExportDeclaration, type ExpressHandler, type ExpressMiddleware, type ExpressNextFunction, type ExpressRequest, type ExpressResponse, type ExpressRoute, type ExpressionStatement, type ExtV2, type ExtendEnv, type Extends, type ExtendsType, type Extension, type ExtensionConfig, type ExtensionContext, type ExtensionHandler, ExtensionPoint, type ExtensionRegistry, type ExtensionSchema, type ExtractClass, type ExtractConfigFromSchema, type ExtractConstructor, type ExtractFunction, type ExtractFunctionKeys, type ExtractKeysByValue, type ExtractMethod, type ExtractNonFunctionKeys, type ExtractOptionalKeys, type ExtractOptions, ExtractPayload, type ExtractProperty, type ExtractRequiredKeys, ExtrapolationMode, FFTResult, type FIFOCache, type FNV1a, type EncryptionAlgorithm$1 as FSEncryptionAlgorithm, type Extension$1 as FSExtension, type HashAlgorithm as FSHashAlgorithm, type WatchOptions$1 as FSWatchOptions, type Factorial, type Factory, type FahrenheitToCelsius, type Failure, type FailureDetector, FallbackType, Fast, type FastifyHandler, type FastifyPlugin, type FastifyReply, type FastifyRequest, type FastifyRoute, type FastifySchema, type FatalError, type FeatureCategory, type FeatureFeedback, type FeatureFlag, type FeatureFlagConfig, type FeatureFlagVariant, type FeatureFlags, type FeatureGate, type FeatureMetadata, type FeaturePriority, type FeatureRegistry, type FeatureRequest, type FeatureTargeting, type FeedbackAnalysis, type Fibonacci, Fidelity, type FieldError, type File$1 as File, type FileContent, type FileCoverage, type FileEncoding, type FileFlags, type FileHash, type FileMetadata, type FileMode, type FileOptions, type FilePermission, type FileStats, type FileType, type FileWatch, type Filter, FilterEffect, FilterKeys, type FilterOperator, FilterType, type Final, type FinallyHandler, type FindAll, type FindLastIndex, FirstParameter, type Fix, type Fixture, type FixtureConfig, type FixtureContext, type FixtureData, type FlaggedFeature, FlangerEffect, Flatten$1 as Flatten, type FlattenAll, type FlattenDepth, type FlattenIntersection, FlattenNamespace, FlattenType, type FlattenType$1 as FlattenTypeInference, type FlattenUnionToTuple, type Flip, type FlipArgs, type FlipFn, type Floor, type Flow, type FlowController, type FlowState, FlushCache, FocusEvent, FocusManager, FocusState, FocusTrap, FocusVisibility, FocusableElement, type FoldResult, type FoldableExpression, type FooterLink, ForEach, type ForStatement, ForceEvaluate, type ForkJoinResult, FormAccessibilityProps, FormDataEntry, FormDataValue, FormFieldAccessibility, type FormatDate, FormatOptions, FormatResult, type FormattedCode, type FormattedMessage, type FormattedOutput, type Formatter, ForwardPort, FragmentShader, FragmentState, FrameAnimationOptions, FrameElement, type TestReporterType as FrameworkTestReporterType, type FreeVars, Frequency, type FrequencyMap, type FreshContext, type FreshHandler, type FreshMiddleware, type FreshPlugin, type FreshRoute, type FreshVar, type FromEvent, type FromJSONSchema, type FromPromise, FromTsToolbelt, FromTypeFest, FromUtilityTypes, type FromYupSchema, type FromZodSchema, Front, type Frozen, type FunctionAnalysis, type FunctionBreakpoint, type FunctionBuilder, type FunctionDeclaration, FunctionKeys, FunctionOnly, type FunctionOptimization, type Either$1 as FunctionalEither, type Err$1 as FunctionalErr, FunctionalImageProps, type Left as FunctionalLeft, type None as FunctionalNone, type Ok as FunctionalOk, type Result as FunctionalResult, type Right as FunctionalRight, type Some as FunctionalSome, type Functor, type FunctorMap, type FunctorV2, FungibleTokenBalance, type GCD, GCPResource, GHZState, GPUShaderStageFlags, GainOptions, type GameAction, type AnimationClip$1 as GameAnimationClip, type AudioClip as GameAudioClip, type AudioListener as GameAudioListener, type AudioSource as GameAudioSource, type Camera as GameCamera, type EasingFunction$1 as GameEasingFunction, type Material as GameMaterial, type Mesh as GameMesh, type GameReducer, type Scene as GameScene, type SceneGraph as GameSceneGraph, type SceneNode as GameSceneNode, type Shader as GameShader, type SoundEffect as GameSoundEffect, type GameState, type GameStore, type Texture as GameTexture, type TextureFormat as GameTextureFormat, type GameTime, type Timer as GameTimer, type Tween as GameTween, type GamepadState, GasEstimate, GasFees, GasLimit, GasPrice, GateCondition, GateConditionResult, type GateConditionType, GateFidelity, GateResult, type GateSeverity, Gateway, type GatewayConfig, type GatewayMiddleware, type GatewayRoute, type Gauge, type Generalize, type Generate, type ASTNode$1 as GenerateASTNode, type GenerateAll, type GenerateDocs, type GenerateFromJSON, type GenerateFromOpenAPI, type GenerateJSDoc, type GeneratedClass, type GeneratedCode, type GeneratedFunction, type GeneratedInterface, type GeneratedMethod, type GeneratedParameter, type GeneratedPosition, type GeneratedProperty, type GeneratedType, type GenerationOptions, GenericTree, type GetMetadata, type GetMetadataKeys, type GetOwnMetadata, type Getter, GitHubJob, GitHubStep, GitHubWorkflow, GitLabArtifacts, GitLabCache, GitLabJob, GitLabPipeline, GitLabService, type GlobPattern, type GlobalErrorHandler, type GossipConfig, type GossipMessage, type GossipNodeState, GracefulDegradation, type GradiansToDegrees, Gradient, GradientType, Grammar, GrammarRule, Graph, GraphEdge, GraphEdges, GraphHasCycle, GraphNode, GraphNodes, GraphPath, GraphQLArgs, GraphQLContext, GraphQLEnumType, GraphQLFieldResolver, GraphQLFieldTypes, GraphQLFlatSelection, GraphQLFragment, GraphQLInputObjectType, GraphQLInputType, GraphQLInterfaceType, GraphQLMutation, GraphQLObjectType, GraphQLOutputType, GraphQLQuery, GraphQLResolveInfo, GraphQLResolver, GraphQLReturn, GraphQLScalarType, GraphQLSchema, GraphQLSelection, GraphQLSelectionSet, GraphQLSubscription, GraphQLToType, GraphQLType, GraphQLUnionType, GreaterThan, type GreaterThanOrEqual, GridAccessibilityProps, GridCellAccessibilityProps, type GroupBy, Grover, type GuardedType, type HKDF, type HKT, type HKTCompose, type HKTConst, type Either$2 as HKTEither, type HKTFlip, type HKTIdentity, type Just as HKTJust, type Maybe as HKTMaybe, type Monad as HKTMonad, type Nothing as HKTNothing, type HKTPartial, type HKTV2, HSL, HSLA, HSV, type HTTPBody, type HTTPHeaders, type HTTPMethod, type Middleware as HTTPMiddleware, type HTTPRequest, type HTTPRequestOptions, type HTTPResponse, type HTTPStatus, Hadamard, type Handle, type HandleAllV2, type HandleV2, HandlerDecoratorOptions, type HandlerV2, HasExactKeys, type HasKey, HasKeys, type HasMetadata, HasMethod, HasProperties, HasProperty, type HasRuntimeCheck, type Hash$1 as Hash, type HashAlgorithm$1 as HashAlgorithm, type HashFunction, type HashInput, type HashOutput, type HashResult, type HashedValue, type HaveCommon, Head$1 as Head, type HealthCheck, type HealthComponent, type HealthIndicator, type HealthReport, type HeapEdge, type HeapMap, type HeapNode, type HeapSort, type Heartbeat, type HeartbeatConfig, HelmChart, HelmRelease, HelmValues, HelmValuesFile, HelpExample, HelpInfo, HelpMessage, HemisphereLight, type Hex, HexColor, type HexToDecimal, Hexagon, type HigherKind, type HintCategory, type HintLevel, type HintSuggestion, HintTextProps, type Histogram, HistoryEntry, type HistoryEvent, type HistoryEventType, type HitRate, type HonoContext, type HonoHandler, type HonoMiddleware, type HonoRoute, type Hook, type HookCallback, type HookConfig, type HookContext, type HookExecutor, type HookHandlerV2, type HookResult, type HookSubscriber, type HookTypeV2, type HotFlow, HotPath, type Hours, type HumanDuration, type CalendarType$1 as I18nCalendarType, type DateFormat$1 as I18nDateFormat, type TimeFormat as I18nTimeFormat, type IDEFeature, type IDEIntegration, IKChain, IKSolverConfig, IKSolverType, IKTarget, INIConfig, INIParseOptions, INIStringifyOptions, type IO, type IOEffect, type IOOps, type IOV2, type IPAddress, type ISODate, type ISODateTime, type ISOTimestamp, type IV, type Identifier, type Identity, If, type IfStatement, ImageAccessibilityProps, Immutable, ImpactAnalysis, ImpactRecommendation, ImpactScope, type ImportDeclaration, type ImportSpecifier, type Impure, type InRange, type InRangeExclusive, type InRangeInclusive, InboundPort, Inc, IncompatibleKeys, IncrementalType, IndexBuffer, type IndexSchema, type Infer, type InferArgs, type InferArrayElement, type InferArrayShape, type InferCommon, type InferContext, type InferEffect, type InferEngine, type InferError, type InferErrorCode, type InferFunctionParam, type InferFunctionShape, type GetTypeCategory as InferGetTypeCategory, type InferIntersectionElement, type InferObjectShape, type InferObjectValue, type InferPromise, type InferResult, type InferReturn, type InferSourceLocation, type InferTupleElement, type TypeName as InferTypeName, type InferUnionElement, type InferenceResult, type InferenceRule, InformativeImageProps, type InhibitRule, Init, type InitPhaseV2, type Initialize, type InitializeOptions, type Inline, type InlineCall, type InlineCandidate, type InlineOptions, type InlineResult, type InlineSnapshot, type InlineThreshold, InputAccessibilityProps, type InputState, type InsertBuilder, type InsertionSort, type Inspect, InspectType, type InstallOptions, type InstallResult, type InstanceStatus, type Instantiate, Int32, type InterfaceBuilder, type Interleave, InternedString, type Interop, type InteropMap, type InteropResult, InterpolateFunction, type InterpolatedMessage, type InterpolationOptions, type Intersection, type Intersperse, type IntervalObservable, IntroducedIn, InvalidType, type InvalidationEvent, type InvalidationRule, type InvalidationStrategy, IsAny, IsArray, type IsArrayV2, type IsBusinessDay, IsCompatible, type IsCoprime, IsEmail, IsEmptyObject, IsEmptyQueue, IsEmptyStack, IsEmptyString, IsEmptyTuple, IsEqual, type IsEqualV2, type IsEven, type IsFinite, type IsFloat, type IsInfinite, type IsInteger, IsIntersection, type IsLeapYear, type IsLiteral, type IsNaN, type IsNegative, IsNever, type IsNull, type IsNullable, IsNumeric, type IsObject, type IsOdd, type IsOptional, type IsOptionalType, type IsPositive, type IsPrime, type IsPrimitive, IsPromise, type IsReadonly, type IsReadonlyType, type IsSubset, type IsSubtypeV2, type IsSuperset, type IsSupertypeV2, type IsTerminal, IsTuple, IsURL, IsUUID, type IsUndefined, IsUnion, IsUnknown, IsValidAddress, type IsValidDate, IsValidJSON, type IsVoid, type IsWeekday, type IsWeekend, type IsYupSchema, type IsZero, type IsZodSchema, type Iso, type IsolationLevel, type IssueCategory, type IssueTemplate, type IssueTrackingConfig, Iterate, type JSDoc, type JSDocExample, type JSDocParam, type JSDocReturn, type JSDocTag, type JSDocTagV2, type JSDocTemplate, type JSDocThrows, type JSDocTypeParam, JSONArray, type JSONConfig, JSONMergePatch, JSONObject, type JSONOptions, JSONPatch, JSONPath, JSONPointer, JSONPrimitive, JSONSchema, JSONValue, type JWT, type JWTAlgorithm, type JWTHeader, type JWTPayload, type JWTSignOptions, type JWTVerifyOptions, type JavaScriptOptions, JenkinsPipeline, JenkinsStage, JenkinsStep, JobResult, Join, type JoinPath, Joint, JsonRpcProvider, JsonRpcRequest, JsonRpcResponse, K8sAffinity, K8sConfigMap, K8sContainer, K8sContainerPort, K8sDeployment, K8sEnvVar, K8sEnvVarSource, K8sHandler, K8sIngress, K8sLifecycle, K8sNodeAffinity, K8sNodeSelector, K8sNodeSelectorTerm, K8sObjectMeta, K8sPod, K8sPodAffinity, K8sPodAffinityTerm, K8sPodSecurityContext, K8sPodSpec, K8sProbe, K8sProjectedVolumeSource, K8sResourceRequirements, K8sSecret, K8sSecurityContext, K8sService, K8sServicePort, K8sToleration, K8sTopologySpreadConstraint, K8sVolume, K8sVolumeMount, KebabCase, type KelvinToCelsius, type Key, KeyBinding, KeyCode, type KeyDerivationOptions, KeyEvent, KeyHandler, type KeyLength, type KeyManagement, type KeyPair, type KeyState, type KeyStatus, type KeyType, type KeyUsage, KeyboardNavigation, KeyboardShortcut, type KeyboardState, Keyframe, KeyframeBase, KeyframeInterpolation, KeyframeSequence, KeyframeValue, Keys, KeysByValueType, KeysOfType, type Keyword, type Kind, type Kind2, type Kind3, type KindArrow, type KindCheck, type KindConstructor, type KindError, type KindV2, type LCM, LFOOptions, type LFUCache, type LN10, type LN2, type LOG10E, type LOG2E, type LRUCache, LabelAccessibilityProps, type LamportClock, LandmarkProps, LandmarkType, type LanguageCode, LanguageModel, LanguagePair, type LanguageServer, Last$1 as Last, type LastIndexOf, Layer, type LayerConfig, type LayerType, LayeredArchitectureConfig, Lazy, LazyArrayElement, LazyAwaited, LazyChain, LazyCompute, LazyConditional, LazyKey, LazyMap, LazyParameters, LazyReturnType, type LeaderElection, LeafPaths, type LeakedObject, type Lease, type Left$1 as Left, type LeftShift, Legacy, LegacyAPI, LegacyAlias, LegacyGas, LegacyTransaction, type Lens, type LensPath, type Set$1 as LensSet, LessThan, type LessThanOrEqual, type Level, LibraryFeatures, LicenseCheck, LicenseInfo, LicensePolicy, LicenseSummary, LicenseViolation, type LifecycleHook, type LifecycleOptions, Light, LightBase, LightType, LightWeight, LighthouseScore, LimiterEffect, Line, LineStrip, type LinearSearch, LinkAccessibilityProps, LinkedList, LiquidityPool, type ListConcat, type ListFilter, type ListFind, type ListFormatOptions, type ListFormatStyle, type ListFormatType, ListHead, type ListIncludes, ListLength, ListNode, ListReverse, ListTail, ListboxAccessibilityProps, ListenerOptions, Literal$2 as Literal, LiteralBoolean, LiteralNumber, LiteralString, type LiveCode, LiveRegion, type LivenessCheck, type LoadBalancer, type LoadBalancerStrategy, type LoadError, type LoadErrorCode, type LoadOptions, type LoadResult, type LoadStatusV2, type LocalTime, Locale, type LocaleCode, type LocaleConfig, type LocaleDetection, type LocalizedCurrency, type LocalizedDate, type LocalizedNumber, type LocalizedTime, type Lock, type LockAcquireResult, LockAcquisition, type LockEntry, type LockFile, type LockFileOptions, type LockFormat, type LockOptions, type LockResult, type Locked, Log, type Log10, type Log2, type LogContext, type LogEntry, LogFilter, type LogLevel, type LogOptions, type LogTransport, type Logged, type Logger, type LoggerConfig, type AlertConfig$1 as LoggingAlertConfig, type HealthCheckResult as LoggingHealthCheckResult, type LogEntry$1 as LoggingLogEntry, type MetricsRegistry as LoggingMetricsRegistry, type TraceContext as LoggingTraceContext, LogicalQubit, Long, type LongestCommonPrefix, type LookupEnv, type LoopAnalysis, type LoopOptimization, LoosePartial, type LossFunction, LowerCase, type MACAlgorithm, type MACResult, type MD5, MIDIAftertouchEvent, MIDIControlChangeEvent, MIDIController, MIDIEvent, MIDINote, MIDINoteNumber, MIDINoteOffEvent, MIDINoteOnEvent, MIDIPitchBendEvent, MIDIProgramChangeEvent, MIDISequence, MIDISystemExclusiveEvent, MIDITrack, type MLMetric, type MQTTConnectOptions, type MQTTHandler, type MQTTPacket, type MQTTPacketType, type MQTTPayload, type MQTTProperties, type MQTTPublishOptions, type MQTTQoS, type MQTTSubscribeOptions, type MQTTTopic, type MachineConfig, type Macro, type MacroBody, type MacroContext, type MacroExpansion, type MacroParam, type MacroResult, MainContentProps, MaintainabilityIndex, MaintainabilityMetrics, MakeAsync, MakeOptional, type MapDelete, type MapGet, type MapHas, type MapKeys, type MapOperator, type MapSet, type MapType, type MapValues, MarkType, Match, Material$1 as Material, MaterialBase, Matrix2x2, Matrix3x3, Matrix4x4, Matrix4x4Flat, type MatrixTensor, Max, type MaxElement, MaxKey, type MaxLength, type MaxValue, Maybe$1 as Maybe, type MaybeOps, type Mean, MeasurementOutcome, MeasurementResult, type Median, type MedianElement, type MemberExpression, type Membership, type MembershipEntry, type MembershipState, type MembershipStatus, type MembershipUpdate, type Memoize, type MemoizeOptions, Memoized, type MemoryAddress, type MemoryDisassembly, type MemoryLeakDetection, type MemoryMetric, type MemoryReadResult, type MemoryRegion, type MemorySnapshot, type MemoryStatistics, type MemoryUsage, type MemoryValue, type MemoryWriteResult, MenuAccessibilityProps, type MenuItem, MenuItemAccessibilityProps, Merge, MergeAll, MergeAllObjects, type MergeConfigs, type MergeDecoratorResults, type MergeDeduplicated, type MergeSort, type MergeTypes, type MergedConfig, type MermaidClass, type MermaidClassDiagram, type MermaidOptions, type MermaidRelationship, type MessageFormat, MessagePackExtension, MessagePackOptions, MessagePackType, MessagePackValue, type MessageParams, type MessageQueue, type GenerateFromSchema$1 as MetaGenerateFromSchema, type GetTypeCategory$1 as MetaGetTypeCategory, type TypeName$1 as MetaTypeName, type MetadataEntry, type MetadataKey, type MetadataMap, type MetadataStorage, type MetadataValue, type MethodDecorator, type MethodDefinition, type MethodOptions, type Metric, type MetricType, type MetricsConfig, type MetricsRegistry$1 as MetricsRegistry, type Microservice, type Middleware$1 as Middleware, type MiddlewareConfig, type MiddlewareContext, type MiddlewarePipeline, type MiddlewareResult, MigrateFromV1, MigrateToV2, type MigrationActionDown, type MigrationActionUp, MigrationChange, MigrationChangeType, MigrationComplexity, MigrationConfig, MigrationContext, MigrationDiff, MigrationEffort, MigrationError, MigrationHistory, type MigrationHistoryEntry, MigrationMap, MigrationPath, MigrationPipeline, MigrationPlan, MigrationProgress, type MigrationRecord, MigrationReport, MigrationResult, MigrationRule, MigrationState, MigrationStatus, MigrationStep, MigrationSuggestion, MigrationWarning, type MimeType, type MimeTypeFromExtension, Min, type MinElement, MinKey, type MinLength, type MinValue, type MinificationOptions, type MinifiedType, type Minify, type MinifyType, Minimal, type Minutes, MismatchDetails, MismatchKind, type MissRate, MissingProperty, MitigationStrategy, type MkdirOptions, type Mock, type MockCall, type MockConfig, type MockFactory, type MockFunction, type MockImplementation, type MockResult, type MockReturn, type Mode, type ModeElement, type Model$1 as Model, type ModelAttribute, type ModelConfig, type ModelHook, type ModelParams, type ModelRelation, type ModelScope, type ModelWeights, type Module, type ModuleAnalysis, type ModuleConfig, type ModuleExport, type ModuleImport, ModuleInfo, type ModuleLoader, type ModuleMock, type ModuleOptimization, ModuleReason, type Modulo, type Monad$1 as Monad, type MonadChain, type MonadFlatten, type MonadPure, type MonadV2, type Monitor, type MonitorResult, type MonitorStatus, type HealthCheckResult$1 as MonitoringHealthCheckResult, type Monoid, type Monomorphize, type Month, MorphAnimation, MorphTarget, MorphWeights, Morpheme, MorphemeType, MorphologicalFeatures, MotionMediaQuery, MotionPreference, MotionSafeAnimation, type MountOptions, type MouseState, type MoveOptions, type Mu, MultiLabelResult, MultiQubitGate, type MultiSortOptions, type MultiSourceConfig, MultiToken, MultipartConfig, type Multiply, MultisampleState, MusicalInterval, Mutable, MutexState, NLMTask, type NPMConfig, type Narrow, type NarrowBy, type NarrowByTag, type NarrowTo, type NarrowWithDiscriminator, NavigationDirection, NavigationProps, type Neg, type NegatedExpectMethods, type NestController, type NestDecoratorMetadata, type NestFilter, type NestGuard, type NestInterceptor, type NestModule, type NestPipe, type NestService, type HTTPStatus$1 as NetHTTPStatus, NetworkConfig, type NetworkError, type NetworkInterface, type NeuralNetworkArchitecture, type NextState, NoNullish, type NodeInfo, type NodeStatusType, type NonDuplicates, NonFunctionKeys, NonFungibleToken, NonNullable$1 as NonNullable, type Nonce, type None$1 as None, type NormalizationLayer, NormalizationOptions, Normalize, type NormalizeAll, type NormalizePath, Not, type NotFoundError, type NotValidator, NoteName, NotePitch, type NotificationChannel, type NotificationConfig, type NthParameter, type NthRoot, type Nu, Nullable, type NullableOption, type NumberFieldValidator, type NumberFormat, type NumberFormatOptions, type NumberSanitizer, type NumberToString, type NumberingSystem, type NumericEqual, type NumericNotEqual, type NumericRange, type OAuthConfig, type OAuthCredentials, type OAuthProviderConfig, type OAuthProviderType, type OAuthToken, ObjectEntries, type ObjectExpression, type ObjectFieldValidator, ObjectFilter, ObjectId, ObjectInvert, ObjectMap, ObjectOmitByType, ObjectPath, ObjectPickByType, type Objective, type Observable, type Observer, type OctalToDecimal, Octave, type Ok$1 as Ok, type OmitByValue, OmitPartial, OmitRequired, type OmitTypeAtPath, type Open, type OperatorFunction, type OperatorName, type OpsV2, type BinaryOperator$1 as OptBinaryOperator, type OptInFeature, type TypeAlias as OptTypeAlias, type UnaryOperator as OptUnaryOperator, type Optimization, OptimizationConfig, type OptimizationContext, OptimizationImprovement, OptimizationLevel, type OptimizationOptions, type OptimizationPass, type OptimizationPipeline, OptimizationResult, type OptimizationRule, type OptimizationStats, OptimizationStrategy, OptimizationType, type Optimize, type OptimizeDeep, type OptimizeFor, OptimizeInference, Optimized, type OptimizedType, type Optimizer, type Option, OptionAccessibilityProps, type OptionMatcher, Optional, OptionalKeys, Optionalize, Or, type OrValidator, type Ord, type Ordering, type OriginalPosition, OscillatorNodeOptions, OscillatorOptions, OutboundPort, OutdatedPackage, type OutputEvent, OutputFile, type OutputFormat, type OutputMetadata, type Over, type PBKDF2, PBRMaterial, type PNPMConfig, type PackOptions, type PackResult, type PackageExports, type PackageMeta, type PackageName, type PackagePlugin, type PackageScript, type PackageVersion, type PackedFile, PadEnd, PadStart, type Panic, PannerOptions, Paragraph, type ParallelOptions, type ParameterDecorator, type ParameterDoc, type ParameterOptions, type Parameters$1 as Parameters, ParcelConfig, ParcelNamerOptions, ParcelTransformerOptions, ParentPath, ParseCSV, type ParseDate, type ParseEnvResult, type ParseError, ParseExpression, ParseJSON, ParseNode, type ParsePath, ParseTree, ParseURL, type Parser, type ParserConfig, type ParserResult, PartOfSpeech, type PartialApply, type PartialConfig, type PartialObserver, type Participant, type ParticipantStatus, type PartitionConfig, type PartitionKey, type PartitionStrategy, PascalCase, PascalCaseKeys, type PasswordHashConfig, type PasswordHashOptions, type PasswordHashResult, type PasswordVerificationResult, type Path$1 as Path, type PathDepth, PathExists, PathLeaf, PathLength, PathParams, type PathParts, type PathSegment, PathValue, Paths, type Pattern, PatternMatch, PatternMatcher, PatternResult, PatternSubscription, PauliBasis, PauliX, PauliY, PauliZ, PayloadFromEvent, Peek, type Percentile, type Perfect, type PerfectOmit, type PerfectPartial, type PerfectPick, type PerfectRequired, type Performance, type PerformanceAlert, PerformanceAudit, type PerformanceBenchmark, PerformanceBudgetResult, PerformanceDiagnostic, type PerformanceEntry, type PerformanceHealthCheck, PerformanceHint, PerformanceHintInfo, PerformanceIssue, type PerformanceMeasure, PerformanceMetric, PerformanceOpportunity, PerformanceOptimization, PerformanceOptimizationSuggestion, PerformanceSuggestion, type PerformanceTrace, type Permission, type PermissionCheck, type PermissionCheckResult, type PermissionCondition, type PermissionDeny, type PermissionGrant, type PermissionSet, type Permutation, type Person, PhaseGate, PhaserEffect, type PhiAccrualConfig, PhongMaterial, type PhysicsBody, type PhysicsMaterial, type PickByValue, PickNonNullable, PickNullable, PickPartial, PickRequired, type PickRequiredV2, type PickTypeAtPath, type Pipe, type PipeAll, Pipeline, PipelineRun, PipelineStage, PitchDetectionResult, type LockEntry$1 as PkgLockEntry, type Package as PkgPackage, type PluginConfig as PkgPluginConfig, type PluginHook$1 as PkgPluginHook, type Registry as PkgRegistry, type RegistryConfig as PkgRegistryConfig, type PlainText, Plane, type Plugin, type PluginAPI, type PluginAPIV2, type PluginConfig$1 as PluginConfig, type PluginConfigProperty, type PluginConfigSchema, type PluginConfigV2, type PluginContext, type PluginContextV2, type PluginError, type PluginEventBus, type PluginEventBusV2, type PluginHookV2, type PluginInitV2, PluginInterface, type PluginLifecycle, type PluginLifecycleHook, type PluginLoadV2, type PluginLogger, type PluginLoggerV2, type PluginManager, type PluginMetadataV2, type PluginQuery, type PluginRegistryV2, type PluginResult, type PluginServicesV2, type PluginStore, type PluginTypeV2, type PluginV2, type PluralForm, type PluralRule, Point, Point2D, Point3D, PointLight, type Policy, type PolicyCondition, type PolicyContext, type PolicyEffect, type PolicyResult, type PolicyRule, Polyfill, Polygon, type Polymorphic, PoolPair, Pooled, type PoolingLayer, Pop, Port, Pose, type Position, type Position2D, type Position3D, type PositionTick, PostingListEntry, type Power, Precompute, PrecomputedValue, type Predicate, type PredicateOps, type Prediction, PrefixKeys, type PrepareResult, PresentationLayer, Presenter, PrettierConfig, type Pretty, PrettyType, type Preview, type PreviewAPI, type PrimeFactors, PrimitiveState, type PrintOptions, type Printable, type Printer, PriorityQueue, type Prism, type PrismaCreateInput, PrivateKey, type Probability, ProcessingUnit, type Product, type ProductElements, Production, type ProfileFrame, type ProfileHotspot, type ProfileNode, type ProfileResult, type ProfileStack, type ProfileStatistics, type Profiler, Projection, PromiseFulfilledResult, PromiseRejectedResult, PromiseResult, PromiseSettledResult, PromiseValue, PropagationController, PropagationPath, PropagationPhase, type PropertyDecorator, type PropertyDefinition, type PropertyDiff, type PropertyOptions, type PropsWithChildren, ProtoEnum, ProtoExtension, ProtoField, type ProtoFieldType, ProtoFile, ProtoMessage, type ProtoMethod, ProtoService, type Protocol$1 as Protocol, type ProtocolContext, type ProtocolEncoding, type ProtocolHandler, type ProtocolMessage, type ProtocolVersion, type PubSub, PublicKey, type PublishConfig, type PublishOptions, type Publisher, type Pure, type PureV2, Push, QAOA, QAOptions, QAResult, QECCode, QFT, Quad, QualityGate, QuantumAlgorithm, QuantumBackend, QuantumCircuit, QuantumGate, QuantumHardware, QuantumJob, QuantumRegister, QuantumResult, QuantumSimulatorConfig, QuantumState, QuantumTeleportation, QuantumVolume, type Quarter, type Quartiles, Quaternion, Qubit, QubitAmplitude, QubitArray, QubitState, Query, QueryBus, QueryHandler, QueryParams, type QueryResult, Queue, QueueConfig, type QueueConsumer, type QueueMessage, QueuePriority, QueueProcessor, type QueueProducer, QueueSize, QueuedEvent, QuickFix, QuickFixAction, QuickFixInfo, type QuickSort, type QwikComponent, type QwikEvent, type QwikServerFunction, type QwikSignal, type QwikStore, type QwikUseContext, type QwikUseSignal, type QwikUseStore, type RBAC, type RBACConfig, type RCCheckCategory, type RCConfig, type RCReadiness, type RCValidationCheck, type RCValidationReport, type RCValidationSummary, type REPL, type REPLCommand, type REPLContext, type REPLOptions, type REPLResult, RGB, RGBA, type RTLConfig, type RTLLocaleChecker, type RadiansToDegrees, RadioAccessibilityProps, type RadixSort, type RaftConfig, type RandomBytes, type RangeStep, type RankN, type RateLimit$1 as RateLimit, type RateLimitConfig, type RateLimitError, type RateLimitStatus, RateLimiter, type Ratio, Ray, type DebounceOptions$1 as ReactiveDebounceOptions, type Effect$1 as ReactiveEffect, type EffectOptions as ReactiveEffectOptions, type ReactivePrimitive, type RetryOptions as ReactiveRetryOptions, type Scheduler as ReactiveScheduler, type SignalOptions as ReactiveSignalOptions, type ReactiveStore, type Subscription as ReactiveSubscription, type TakeOptions as ReactiveTakeOptions, type ThrottleOptions as ReactiveThrottleOptions, type ReactiveValue, type Zip as ReactiveZip, type ReadConcernLevel, type ReadOnly, type ReadOptions, type ReadThroughCache, type ReadableStreamLike, type Reader, type ReaderOps, type ReadinessCheck, ReadonlyKeys, type ReadonlySignal, type RealTimeChannel, type RealTimeClient, type RealTimeMessage, type RealTimeSubscription, type Reconstruct, type ReconstructConstraints, type ReconstructDeep, type ReconstructInfer, type ReconstructStrict, RecoverableError, RecoveryOption, type RecoveryOptions, type RecoveryResult, RecoveryStrategy, Rect, Rectangle, type RecurrentLayer, type Recurse, type RecurseUntil, type RecurseWhile, RecursionLimit, Reduce, ReduceComplexity, ReduceIntersection, type ReduceOperator, ReduceRecursion, ReduceUnion, type RefactorAction, type RefactorImpact, type RefactorKind, type RefactorPreview, type RefactorSafetyAssessment, type RefactorSuggestion, type Reference, type ReferenceGraph, type ReferenceMap, type ReferrerPolicy, type Refinement, type Reflect, type RegionConfig, type RegionType, type RegisteredPlugin, type Registry$1 as Registry, type RegistryAuth, type RegistryConfig$1 as RegistryConfig, type RegistryEntry, type RegistryPackage, type RegistryVersion, type Reject, RelatedDiagnostic, RelationMention, type RelationSchema, RelationType, type RelativePath, type RelativeTime, type RelativeTimeFormat, type RelativeTimeOptions, type RelativeTimeUnit, type ReleaseBlocker, type ReleaseCriteria, type ReleaseCriteriaType, ReliabilityMetrics, type RemixAction, type RemixActionData, type RemixLoader, type RemixLoaderData, type RemixMeta, type RemixRoute, type RemoteConfigProvider, type RemoveAll, type RemoveAt, type RemoveDuplicates, type RemoveFirst, RemoveSpaces, RemovedAPI, RemovedIn, type RemovedProperties, RenameKeys, RenameType, RenderPassDescriptor, RenderPipelineDescriptor, RenderTargetInfo, type Renderable, Repeat, Replace, ReplaceAll, type ReplaceValue, Replacement, ReplayOptions, ReplayResult, type ReplaySubject, type Replica, type ReplicaSet, type ReplicaSetConfig, type ReplicaStatus, type Replication, type ReplicationStrategy, type ReportConfig, type ReportFormat, ReportedError, ReportedWarning, Repository, type RequestBodyDoc, RequireArray, RequireAtLeastOne, RequireExactlyOne, RequireFunction, RequireKeys, RequireNotNullish, Required$1 as Required, type RequiredConfig, RequiredKeys, type Resolution, type ResolutionError, type ResolutionErrorCode, type ResolutionOptions, type ResolutionResult, type ResolveArray, ResolveBrandCache, type ResolveOptional, type ResolvePath, type ResolvePromise, type ResolveStrategy, type ResolvedPackage, type Resource, type ResponseDoc, RestructureType, type Result$1 as Result, type ResultMatcher, type ResultOps, type Retry, type RetryConfig, type RetryOptions$1 as RetryOptions, type ReturnStatement, type ReturnType$1 as ReturnType, ReverbEffect, Reverse$1 as Reverse, ReverseString, type Right$1 as Right, type RightShift, RiskLevel, type Role, type RoleBasedPermission, type RoleHierarchy, type RolePermission, type RoleSet, RollupBuild, RollupChunkInfo, RollupConfig, RollupLoadResult, RollupModuleInfo, RollupOutput, RollupOutputAsset, RollupPlugin, RollupRenderChunkResult, RollupResolveIdResult, RollupTransformResult, RollupTreeshake, RollupWarning, type RotateLeft, type RotateRight, Rotation, RotationGate, type Round, type Route, RowAccessibilityProps, RowHeaderAccessibilityProps, type RuleCondition, type RuleContext, type RulePattern, type RuleReplacement, type RuleResult, type RuleSet, RunTypeTest, type RuntimeGuard, type SHA256, type SHA512, type SQLCondition, type SQLExpression, type SQLJoin, type SQLQuery, type SQRT1_2, type SQRT2, type SSLConfig, SWCCompressOptions, SWCConfig, SWCFormatOptions, SWCMangleOptions, SWCMinifyOptions, SWCParser, SWCPlugin, SWCReactRefresh, SWCReactTransform, SWCTransform, SWCTransformResult, SafeAnimationType, type SafeHTML, SafeHandler, type SafeRefactor, type SafeURL, Saga, type SagaCompensation, type SagaResult, type SagaStatus, type SagaStep, type Salt, SampleFormat, SampleRate, SamplerDescriptor, type SanitizationChange, type SanitizationRule, type SanitizeResult, type SanitizedInput, type Sanitizer, type Satisfies, type ScalarTensor, Scale, ScheduleOptions, ScheduledJob, Scheduler$1 as Scheduler, type SchedulerAction, type SchedulerLike, type AssertionFunction$1 as SchemaAssertionFunction, type SchemaBuilder, type SchemaField, type Scope, type ScopeChain, type ScopeEntry, type ScopeType, ScreenReaderAnnouncement, ScreenReaderText, type ScriptOptions, type ScriptResult, type ScriptRunner, type Find$1 as SearchFind, type FindIndex$1 as SearchFindIndex, type Flatten$2 as SearchFlatten, type FlattenDeep$1 as SearchFlattenDeep, type Includes$1 as SearchIncludes, type SearchIndex, type SearchIndexEntry, type SearchIndexMetadata, type IndexOf$1 as SearchIndexOf, type None$2 as SearchNone, type Partition$1 as SearchPartition, type SearchResult, type Reverse$2 as SearchReverse, type Some$1 as SearchSome, type Unique$1 as SearchUnique, type Seconds, type Secret, type SecretConfig, type SecretOptions, type SecretProvider, type SecretSource, type SecretValue, SecurityAudit, type EncryptedData$1 as SecurityEncryptedData, type EncryptionAlgorithm$2 as SecurityEncryptionAlgorithm, type HashAlgorithm$2 as SecurityHashAlgorithm, type IV$1 as SecurityIV, type JWT$1 as SecurityJWT, type JWTHeader$1 as SecurityJWTHeader, type Key$1 as SecurityKey, type KeyPair$1 as SecurityKeyPair, SecurityMetrics, SecurityRecommendation, SecurityReport, type Salt$1 as SecuritySalt, type SignatureAlgorithm as SecuritySignatureAlgorithm, type SigningKey as SecuritySigningKey, SecuritySummary, type VerificationKey as SecurityVerificationKey, type SegmentationResult, type SelectBuilder, type SelectableChannel, type SemVer, type SemVerComparator, type SemVerDiff, type SemVerRange, type SemVerSatisfies, SemanticFrame, SemanticRole, Semaphore, type Semigroup, SemitoneInterval, type SendEvent, Sentence, SentimentLabel, SentimentResult, SentimentScore, type ServerCapabilities, type ServiceClient, type ServiceConfig, type ServiceDiscovery, type ServiceError, type HealthStatus as ServiceHealthStatus, type ServiceInstance, type ServiceRegistry, type ServiceRequest, type ServiceResponse, type RetryPolicy as ServiceRetryPolicy, type Session, type SessionConfig, type SessionData, type SessionId, type SessionStore, type SetAdd, type SetDifference, type SetHas, type SetIntersection, type SetIsEmpty, type SetIsSubset, type SetRemove, type SetTypeAtPath, type SetUnion, type Setter, ShaderBinding, ShaderInput, ShaderLanguage, ShaderOutput, ShaderProgram, ShaderStage, type ShakeMessage, type ShallowResult, Shape, type ShardMap, type Sharding, SharedStructure, Shor, type Shorten, type ShowType, type SideEffect, SideEffectInfo, type SideEffectsAnalysis, type Sign, type Signal, type SignalValue, Signature, type SignatureAlgorithm$1 as SignatureAlgorithm, type SignatureResult, type SignatureVerificationResult, type Signed, type SignedData, type SigningKey$1 as SigningKey, type Similarity, Simplify, type SimplifyAll, SimplifyForCompiler, type SimplifyIntersection, type SimplifyUnion, type Sin, SingleQubitGate, type Singleton, Size2D, Size3D, SizeMetrics, Skeleton, SkipCheck, SkipLinkProps, SkipTest, SkipToContentProps, type Slice, type SmartCompletion, SmartContract, SnakeCase, SnakeCaseKeys, type Snapshot, type SnapshotConfig, type SnapshotMatch, type SnapshotResult, type SnapshotSerializer, type SnippetTemplate, type SocialLink, type SocketAddress, type Solve, type Some$2 as Some, type Sort, type SortOptions, type SortOrder, type SourceLocation, type SourceLocationWithFile, type SourceMap, type SourceMapConsumer, type SourceMapGenerator, type SourceMapMapping, type SourceRange, type Span, type SpanEvent, type SpanKind, type SpanLink, type SpanOptions, type SpanStatus, SpatialOrientation, SpatialPannerOptions, SpatialPosition, type SpawnPoint, SpecialTokens, Spectrogram, Spectrum, Sphere, type Splice, Split, SplitByComma, SplitPath, SpotLight, SpringConfig, SpringPreset, SpringState, SpriteAnimation, SpriteAnimationDef, type SpriteComponent, SpriteFrame, SpriteSheet, type Spy, type SpyConfig, type SpyFactory, type Sqrt, type StabilityLevel, type StableFeature, Stack, StackSize, type StackTrace, StageResult, StakingInfo, StandardInterpolate, type StartOfDay, type StartOfMonth, type StartOfWeek, type StartOfYear, StartsWith, type State, type StateEffect, type StateHistory, type StateMachine, type State$1 as StateMachineState, type StateOps, type Transition as StateTransition, StateVector, type StdDev, StencilFaceState, StencilOperation, type StepResult, type StepType, StepsEasing, type StoppedEvent, type StoppedReason, StorageBuffer, type StoreAction, type StoreMiddleware, type StoreReducer, type StoredPlugin, type Stream, type StreamChunk, type StreamError, type StreamReader, type StreamValue, type StreamWriter, StrictExclude, type StrictExtends, StrictExtract, type StringFieldValidator, StringLength, type StringSanitizer, StringToArray, type StringToNumber, StringifyCSV, StringifyJSON, StripNever, StripNull, type StripNullable, type StripNullish, type StripOptional, StripUndefined, type Stub, type StubFactory, type Subject, type Subscriber, Subscription$1 as Subscription, SubscriptionFilter, SubscriptionGroup, SubscriptionManager, SubscriptionOptions, type SubstituteVar, type Substitution, type SubstitutionScope, Subtract, type SubtractDays, type SubtractMonths, type SubtractYears, type Success, SuffixKeys, type SuggestionCategory, SuggestionInfo, type SuggestionStatus, type SuiteResult, type Sum, type SumElements, type Summary, Sunset, SunsetPhase, SunsetPolicy, SunsetSchedule, SuperdenseCoding, SurfaceCode, type Survey, type SurveyQuestion, type SurveyQuestionType, type SurveyResult, type SvelteKitAction, type SvelteKitLayout, type SvelteKitLoad, type SvelteKitPage, type SvelteKitServer, SwapParams, type SymbolFlags, type SymbolScope, type SymbolTable, type SymmetricDifference, SyncEventHandler, SynthVoice, type Synthesize, SynthesizerPatch, type SystemError, type TCPFlags, type TCPPacket, type TCPSocketOptions, type TCPState, type TOMLConfig, TOMLDateTime, TOMLDocument, TOMLKey, TOMLTable, TOMLValue, type TRPCErrorFormatter, type TRPCProcedureOptions, type TRPCRouterWithMiddleware, TSLintConfig, type TTLCache, TabAccessibilityProps, TabListAccessibilityProps, TabPanelAccessibilityProps, TabbableOptions, TableAccessibilityProps, type TableSchema, type TagLength, Tail$1 as Tail, type TailCall, TailRecursive, type Take, type TakeFirst, type TakeLast, type TakeLastN, type TakeWhile, type Tan, type TargetingOperator, Task, TaskError, type TaskOps, TaskOptions, TaskPriority, TaskResult, TaskStatus, TechnicalDebt, type Temperature, type Template, type TemplateEntry, type TemplateError, type TemplateField, type TemplateLiteral, type TemplateRegistry, type TemplateResult, type TemplateString, type TemplateVariable, type TemplateVariables, type Tensor, type Tensor3D, type Tensor4D, type TensorDType, type TensorRank, type TensorShape, TermIndex, TermInfo, TerraformConfig, TerraformConnection, TerraformModule, TerraformOutput, TerraformProvider, TerraformProvisioner, TerraformResource, TerraformVariable, type TestAll, type AssertionError$1 as TestAssertionError, type AssertionResult$1 as TestAssertionResult, type TestCase, type TestConfig, type TestContext, type TestContextProvider, TestCoverage, type TestEnvironmentConfig, type TestEnvironmentType, type TestError, type TestEvent, type TestEventHandler, TestFile, type TestFilter, type TestGroup, type TestHook, type TestHookFunction, type TestHooksConfig, TestInfo, type TestMetadata, TestPerformance, type TestReporterInterface, TestResult, type TestResultType, type TestRunner, type TestRunnerResult, type TestSetup, type SnapshotOptions as TestSnapshotOptions, type TestSuite, TestSummary, type TestTeardown, type TestTiming, type TestUtilities, TextChunk, type TextDocumentSyncKind, type TextEdit, TextureDescriptor, TextureDimension, TextureFormat$1 as TextureFormat, TextureRef, TextureUsage, TextureViewDescriptor, type ThreadStatus, ThreeQubitGate, Throttle, ThrottleOptions$1 as ThrottleOptions, Thunk, type TimeAgo, type TimeAgoOptions, type TimeFormat$1 as TimeFormat, type TimeOptions, type TimeString, type TimeUnit, type TimeZone, type Timed, type Timeout, type TimeoutError, type TimeoutOptions, type TimerMock, type TimerObservable, Timestamp, type Timezone, type TimezoneOffset, type Timing, type TimingConfig, type TimingEnd, type TimingResult, type TimingStart, type ToAngular, type ToJSONSchema, type ToReact, type ToSvelte, ToTsToolbelt, ToTypeFest, type ToUnixTimestamp, ToUtilityTypes, type ToVue, type ToYupSchema, type ToZodSchema, Toffoli, Token$1 as Token, TokenAllowance, TokenBalance, TokenInfo, TokenStream, TokenType, type Tokenizer, type TokenizerConfig, TokenizerOptions, ToolbeltDeepPartial, ToolbeltUnionExclude, ToolbeltUnionPick, TopicInfo, TopicModelingResult, Torus, type Totient, type TouchPoint, type TouchState, TouchTargetProps, TouchTargetSize, type Trace, type TraceConfig, type TraceContext$1 as TraceContext, type TraceSpan, type TraceStatus, type Tracer, type TrackEffect, type TrainingCallback, type TrainingConfig, type TrainingLogs, Transaction$1 as Transaction, type TransactionAction, type TransactionCoordinator, TransactionFee, TransactionHash, TransactionInput, type TransactionLog, type TransactionOptions, TransactionOutput, TransactionReceipt, type TransactionResult, TransactionSignature, type TransactionState, TransactionType, Transform, type TransformChange, type TransformComponent, type TransformContext, TransformMatrix, TransformOptions, type TransformPass, type TransformPassResult, type TransformPipeline, type TransformResult, TransformRule, type TransformScheduler, type TransformStreamLike, TransformType, type TransformVisitor, type Transformer, type TransformerConfig, Transition$1 as Transition, type TransitionAction, type TransitionCondition, TransitionDelay, TransitionDuration, TransitionProperty, TransitionShorthand, TransitionTimingFunction, Translation, type TranslationKey, type TranslationMap, TranslationMetadata, TranslationOptions, type TranslationResource, TranslationResult, type TranslationValue, type Traversal, type TraverseOptions, type TraverseVisitor, Tree, TreeAccessibilityProps, TreeDepth, TreeFlatten, TreeItemAccessibilityProps, TreeLeaves, TreeNode, TreePath, type TreeShake, type TreeShakeOptions, TreeShakingResult, TremoloEffect, Triangle, Trim, TrimLeft, TrimRight, type Trunc, type Try, type TryCatchResult, type TryFeature, type TryResult, TupleLength, TurbopackConfig, TurbopackModule, TurbopackOutput, TurbopackPlugin, TurbopackResolve, TurbopackRule, type TwoPhaseCommit, TwoQubitGate, type TypeAbs, TypeAnalysis, type TypeApp, type TypeAssertionCheck, type TypeAtPath, TypeBenchmarkConfig, TypeBenchmarkResult, type TypeBuilder, type TypeBuilderV2, TypeCache, TypeCategory, type TypeCheckError, type TypeComparison, TypeComplexity, TypeComplexityMetrics, type TypeConstructorV2, TypeCoverage, type TypeDependency, type TypeDiagram, type TypeDiff, type Difference$1 as TypeDifference, type TypeDoc$1 as TypeDoc, type TypeDocExample, type TypeDocGeneric, type TypeDocKind, type TypeDocMethod, type TypeDocParam, type TypeDocProperty, type TypeDocumentation, type TypeEnv, TypeEq, TypeEvery, TypeFestCamelCase, TypeFestSnakeCase, TypeFilter, TypeFind, type TypeGraph, type TypeGraphEdge, type TypeGraphNode, type TypeHierarchy, TypeIdentity, TypeIncludes, TypeInfo, type TypeInfoField, type TypeInfoMethod, type TypeMap, type TypeMapEntry, type TypeMapGet, type TypeMapHas, type TypeMapKeys, type TypeMapSet, type TypeMapValues, TypeMismatch, type TypeMismatchError, type TypePath, TypeProfileEntry, TypeProfilerConfig, TypeProfilerResult, type TypeReferenceGraph, type TypeScriptOptions, type TypeSet, type TypeSignature, TypeSize, TypeSome, type TypeStructure, TypeTest, TypeTestResult, TypeTestSuite, TypeToGraphQL, type TypeTree, type TypeV2, type TypeVar, TypedError, TypedEvent, type TypedEventTarget, type ConfigField$1 as TypesafeConfigField, type ConfigFieldType$1 as TypesafeConfigFieldType, type ConfigFileFormat$1 as TypesafeConfigFileFormat, type ConfigLoader$1 as TypesafeConfigLoader, type ConfigPriority$1 as TypesafeConfigPriority, type ConfigSchema$1 as TypesafeConfigSchema, type ConfigValidationResult$1 as TypesafeConfigValidationResult, type EnvConfig$1 as TypesafeEnvConfig, type EnvMapping$1 as TypesafeEnvMapping, type SecretConfig$1 as TypesafeSecretConfig, type UDPPacket, type UDPSocketOptions, type UIButton, type UIElement, type UIProgress, type UIText, type URLConstraint, type URLEncoded, URLEncodedOptions, type URLType, type UTCTime, type UUIDConstraint, type Ultimate, type UnaryExpression, type UnaryFunction, type UnaryOperator$1 as UnaryOperator, Unbrand, UncapitalizeAll, type UnchangedProperties, UncoveredTypes, type Uncurried, type Uncurry, type UnifiedDeepMerge, type UnifiedMerge, type UnifiedOmit, type UnifiedPartial, type UnifiedPick, type UnifiedRequired, UniformBuffer, type Unify, type Union, UnionToIntersection, UnionToTuple, type Unique$2 as Unique, type UniqueBy, type UniqueKeys, type UnitFormatOptions, type UnitType, type UniversalAPIHandler, UniversalBuildConfig, UniversalDataFormat, type UniversalMiddleware, type UnixMilliseconds, type UnixSeconds, type UnixTimestamp, UnlitMaterial, type UnsignedRightShift, type Unstable, type UnusedExports, UnwrapPromise, type Unzip, type Unzip3, type UpdateBuilder, type UpdateOperator, UpperCase, type UsagePattern, UseCase, type UsedExports, type UserSuggestion, type UtilV2, UtilityDeepPartial, UtilityDeepReadonly, UtilityMap, type V1Compat, type V2APIVersion, type DeprecationInfoV2 as V2DeprecationInfo, type V2Migration, type TypeDocumentation$1 as V2TypeDocumentation, type V2_Alpha, type V2_Beta, type V2_Experimental, type V2_Preview, type VFSMount, type VFSNode, type VFSOperations, VQE, ValidPath, type ValidTransitions, type Validate, ValidateMigration, type ValidateOptions, type ValidateRC, type ValidationContext, type ValidationError, type ValidationErrors, type ValidationOptions, type ValidationResult, type ValidationRule$1 as ValidationRule, type Validator, ValidatorInfo, type ValidatorResult, type ValidationError$1 as ValidatorValidationError, ValueObject, ValueOf, type Variable, type VariableDeclaration, type VariableDeclarator, type VariablePresentationHint, type VariableTypeInfo, type VariableValue, type Variance, Vector2, type Vector2D, Vector3, type Vector3D, Vector4, type VectorClock, type VectorTensor, type Velocity, type VerificationKey$1 as VerificationKey, type Verified, type VerifyAll, VersionChangelog, VersionComparison, VersionCompat, VersionConstraint, VersionGate, VersionRange, VersionedAPI, VertexAttribute, VertexBuffer, VertexBufferLayout, VertexShader, VertexState, VestibularTrigger, type View, type VirtualFS, VirtualizedMiddleware, type VisitContext, type VisitResult, type Visitor, type VisualizationOptions, type TypeMap$1 as VisualizeTypeMap, VisuallyHiddenProps, ViteAlias, ViteBuild, ViteCORSOptions, ViteCSS, ViteCSSModules, ViteConfig, ViteDevServer, ViteESBuild, ViteFSServer, ViteHMROptions, ViteHTTPSOptions, ViteHotUpdateContext, ViteJSON, ViteLibOptions, ViteLoadResult, ViteModulePreload, ViteOptimizeDeps, VitePlugin, VitePostCSS, VitePreview, VitePreviewServer, ViteProxyConfig, ViteResolve, ViteResolveIdResult, ViteServer, ViteTransformResult, ViteWatchOptions, Vocabulary, type Vote, type VoteRequest, type VoteResponse, Vulnerability, WCAGContrastRequirements, WCAGCriterion, WCAGLevel, WCAGTouchTargetRequirements, type WSCloseCode, type WSEvent, type WSFrame, type WSHandler, type WSMessage, type WSOpcode, type WSOptions, type WalkOptions, WalletAccount, WalletConnection, WalletConnectionStatus, WalletMetadata, WalletProvider, Warning, WarningConfig, WarningLevel, type WatchCallback, type WatchDetails, type WatchEvent, type WatchExpression, type WatchHandler, type WatchResult, WaveformAnalysis, WaveformOptions, WaveformType, type WebSocketConfig, type WebSocketEvent, type EventHandler$1 as WebSocketEventHandler, type WebSocketHandler, type WebSocketMessage, type WebSocketOptions, type WebSocketState, type Stream$1 as WebSocketStream, WebpackCache, WebpackCacheGroup, WebpackCallback, WebpackConfig, WebpackDependency, WebpackDevServer, WebpackLoader, WebpackLoaderContext, WebpackModule, WebpackOptimization, WebpackOutput, WebpackPerformance, WebpackPlugin, WebpackProxyConfig, WebpackResolve, WebpackResolvePlugin, WebpackRule, WebpackSplitChunks, WebpackStats, type WeekOfYear, type WhileStatement, type Widen, type WidenArrayElement, type WidenLiteral, type WidenTo, type Width, WildcardHandler, WillBeRemoved, Withdrawal, WordEmbedding, WordForm, Worker, WorkerOptions, WorkerPool, WorkerTask, type Workflow, type WorkflowDefinition, type WorkflowEngine, type WorkflowEngineConfig, type WorkflowError, type WorkflowErrorHandler, type WorkflowExecution, type WorkflowExecutor, type WorkflowHistory, type WorkflowInstance, type WorkflowPersistence, type RetryPolicy$1 as WorkflowRetryPolicy, type WorkflowStatus, type WorkflowStep, type StepStatus$1 as WorkflowStepStatus, type WorkflowTimeout, type WorkflowTransition, type Workspace, type WorkspaceConfig, type WorkspaceDependency, type WorkspaceEdge, type WorkspaceEdit, type WorkspaceGraph, type WorkspaceOptions, type WorkspacesConfig, WrapPromise, WritableKeys, type WritableSignal, type WritableStreamLike, type WriteBehindCache, type WriteConcern, type WriteOnly, type WriteOptions, type WriteThroughCache, type Writer, type WriterOps, XComplexType, XMLAttribute, XMLAttributeGroup, XMLAttributes, XMLDocument, XMLElement, XMLGroup, XMLNode, XMLSchema, XPathExpression, XPathResult, XSimpleType, YAMLConfig, YAMLDocument, YAMLError, YAMLNode, type YAMLOptions, YAMLPath, YAMLValue, type YarnConfig, type YearsBetween, type YupInput, type YupOutput, type Zip$1 as Zip, type Zip3, type ZipWith, type ZodArrayElement, type ZodInput, type ZodOutput, type ZodShape, type gRPCMethod, type gRPCRequest, type gRPCResponse, type gRPCService, type gRPCStatus, type gRPCStream };