uni-types 1.10.0 → 1.11.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
@@ -3669,6 +3669,492 @@ type Unbrand<T> = T extends Brand<infer U, infer _> ? U : T;
3669
3669
  type BrandedString<B extends string> = Brand<string, B>;
3670
3670
  type BrandedNumber<B extends string> = Brand<number, B>;
3671
3671
  //#endregion
3672
+ //#region src/breaking-change/index.d.ts
3673
+ /**
3674
+ * Breaking Change Detection (v1.11.0)
3675
+ *
3676
+ * Utilities to detect and report breaking changes between type versions.
3677
+ */
3678
+ /**
3679
+ * Detect breaking changes between two types
3680
+ */
3681
+ interface DetectBreakingChanges<T, _U> {
3682
+ removed: Set<keyof T & string>;
3683
+ added: Set<keyof _U & string>;
3684
+ changed: Map<string, {
3685
+ from: T[keyof T];
3686
+ to: _U[keyof _U];
3687
+ }>;
3688
+ }
3689
+ /**
3690
+ * Breaking change report
3691
+ */
3692
+ interface BreakingChangeReport<_T = unknown> {
3693
+ /** Report ID */
3694
+ id: string;
3695
+ /** Source type */
3696
+ sourceType: string;
3697
+ /** Target type */
3698
+ targetType: string;
3699
+ /** Breaking changes detected */
3700
+ breakingChanges: BreakingChange[];
3701
+ /** Non-breaking changes */
3702
+ nonBreakingChanges: Change[];
3703
+ /** Report timestamp */
3704
+ timestamp: Date;
3705
+ /** Summary */
3706
+ summary: BreakingChangeSummary;
3707
+ }
3708
+ /**
3709
+ * Breaking change
3710
+ */
3711
+ interface BreakingChange {
3712
+ /** Change ID */
3713
+ id: string;
3714
+ /** Change type */
3715
+ type: BreakingChangeType;
3716
+ /** Severity */
3717
+ severity: BreakingChangeSeverity;
3718
+ /** Location */
3719
+ path: string;
3720
+ /** Description */
3721
+ description: string;
3722
+ /** Old value */
3723
+ oldValue?: unknown;
3724
+ /** New value */
3725
+ newValue?: unknown;
3726
+ /** Migration path */
3727
+ migrationPath?: string;
3728
+ /** Code example */
3729
+ codeExample?: string;
3730
+ }
3731
+ /**
3732
+ * Breaking change type
3733
+ */
3734
+ type BreakingChangeType = 'removed' | 'renamed' | 'restructured' | 'behavior' | 'signature' | 'nullability' | 'optionality' | 'constraint' | 'generic' | 'inheritance';
3735
+ /**
3736
+ * Breaking change severity
3737
+ */
3738
+ type BreakingChangeSeverity = 'major' | 'minor' | 'patch';
3739
+ /**
3740
+ * Breaking change summary
3741
+ */
3742
+ interface BreakingChangeSummary {
3743
+ /** Total changes */
3744
+ totalChanges: number;
3745
+ /** Major changes */
3746
+ majorChanges: number;
3747
+ /** Minor changes */
3748
+ minorChanges: number;
3749
+ /** Patch changes */
3750
+ patchChanges: number;
3751
+ /** Impact score (0-100) */
3752
+ impactScore: number;
3753
+ /** Estimated migration effort */
3754
+ migrationEffort: MigrationEffort;
3755
+ }
3756
+ /**
3757
+ * Migration effort
3758
+ */
3759
+ type MigrationEffort = 'trivial' | 'low' | 'medium' | 'high' | 'extreme';
3760
+ /**
3761
+ * API diff between two types
3762
+ */
3763
+ interface APIDiff<T, U> {
3764
+ /** Properties added */
3765
+ added: AddedAPI<U>;
3766
+ /** Properties removed */
3767
+ removed: RemovedAPI<T>;
3768
+ /** Properties changed */
3769
+ changed: ChangedAPI<T, U>;
3770
+ }
3771
+ /**
3772
+ * Added API properties
3773
+ */
3774
+ type AddedAPI<T> = { [K in keyof T]: {
3775
+ type: 'added';
3776
+ description?: string;
3777
+ } };
3778
+ /**
3779
+ * Removed API properties
3780
+ */
3781
+ type RemovedAPI<T> = { [K in keyof T]: {
3782
+ type: 'removed';
3783
+ description?: string;
3784
+ replacement?: string;
3785
+ } };
3786
+ /**
3787
+ * Changed API properties
3788
+ */
3789
+ type ChangedAPI<T, U> = { [K in keyof T & keyof U]: {
3790
+ type: 'changed';
3791
+ from: T[K];
3792
+ to: U[K];
3793
+ breaking: boolean;
3794
+ description?: string;
3795
+ } };
3796
+ /**
3797
+ * API change
3798
+ */
3799
+ interface APIChange {
3800
+ /** Change ID */
3801
+ id: string;
3802
+ /** Change type */
3803
+ type: 'added' | 'removed' | 'changed' | 'deprecated';
3804
+ /** API path */
3805
+ path: string;
3806
+ /** Description */
3807
+ description: string;
3808
+ /** Breaking change flag */
3809
+ isBreaking: boolean;
3810
+ /** Deprecation info */
3811
+ deprecation?: {
3812
+ reason: string;
3813
+ since: string;
3814
+ removedIn?: string;
3815
+ replacement?: string;
3816
+ };
3817
+ }
3818
+ /**
3819
+ * Compatibility check result
3820
+ */
3821
+ type CompatibilityCheck<T, U> = T extends U ? U extends T ? {
3822
+ compatible: true;
3823
+ level: 'full';
3824
+ } : {
3825
+ compatible: false;
3826
+ level: 'partial';
3827
+ details: string;
3828
+ } : {
3829
+ compatible: false;
3830
+ level: 'none';
3831
+ details: string;
3832
+ };
3833
+ /**
3834
+ * Breaking change compatibility report (v1.11.0)
3835
+ */
3836
+ interface BreakingChangeCompatibilityReport<_T = unknown> {
3837
+ /** Source type */
3838
+ source: string;
3839
+ /** Target type */
3840
+ target: string;
3841
+ /** Compatibility level */
3842
+ level: CompatibilityLevel;
3843
+ /** Compatible percentage (0-100) */
3844
+ percentage: number;
3845
+ /** Issues found */
3846
+ issues: CompatibilityIssue[];
3847
+ /** Warnings */
3848
+ warnings: string[];
3849
+ /** Recommendations */
3850
+ recommendations: string[];
3851
+ }
3852
+ /**
3853
+ * Compatibility level
3854
+ */
3855
+ type CompatibilityLevel = 'full' | 'partial' | 'none';
3856
+ /**
3857
+ * Compatibility issue
3858
+ */
3859
+ interface CompatibilityIssue {
3860
+ /** Issue ID */
3861
+ id: string;
3862
+ /** Issue type */
3863
+ type: CompatibilityIssueType;
3864
+ /** Location */
3865
+ path: string;
3866
+ /** Issue description */
3867
+ description: string;
3868
+ /** Suggested fix */
3869
+ suggestion?: string;
3870
+ /** Severity */
3871
+ severity: 'error' | 'warning' | 'info';
3872
+ }
3873
+ /**
3874
+ * Compatibility issue type
3875
+ */
3876
+ type CompatibilityIssueType = 'missing_property' | 'type_mismatch' | 'signature_change' | 'nullability_change' | 'optionality_change' | 'constraint_violation' | 'generic_incompatibility' | 'inheritance_change' | 'removed_api' | 'renamed_api';
3877
+ /**
3878
+ * Migration path between types
3879
+ */
3880
+ /**
3881
+ * Breaking change migration path (v1.11.0)
3882
+ */
3883
+ type BreakingChangeMigrationPath<T, _U> = BreakingChangeMigrationStep<T>[];
3884
+ /**
3885
+ * Breaking change migration step (v1.11.0)
3886
+ */
3887
+ interface BreakingChangeMigrationStep<T> {
3888
+ /** Step number */
3889
+ step: number;
3890
+ /** Step name */
3891
+ name: string;
3892
+ /** Description */
3893
+ description: string;
3894
+ /** Type transformation */
3895
+ transform: (input: T) => unknown;
3896
+ /** Required flag */
3897
+ required: boolean;
3898
+ /** Breaking change flag */
3899
+ breaking: boolean;
3900
+ /** Estimated time in minutes */
3901
+ estimatedTime: number;
3902
+ /** Dependencies */
3903
+ dependsOn?: number[];
3904
+ /** Validation */
3905
+ validate?: (input: T) => boolean;
3906
+ }
3907
+ /**
3908
+ * Migration complexity level
3909
+ */
3910
+ type BreakingChangeMigrationComplexity = 'trivial' | 'moderate' | 'complex' | 'breaking';
3911
+ /**
3912
+ * Migration plan
3913
+ */
3914
+ interface MigrationPlan {
3915
+ /** Plan ID */
3916
+ id: string;
3917
+ /** Source version */
3918
+ fromVersion: string;
3919
+ /** Target version */
3920
+ toVersion: string;
3921
+ /** Migration steps */
3922
+ steps: BreakingChangeMigrationStep<unknown>[];
3923
+ /** Total estimated time */
3924
+ totalTime: number;
3925
+ /** Complexity */
3926
+ complexity: BreakingChangeMigrationComplexity;
3927
+ /** Required changes */
3928
+ requiredChanges: number;
3929
+ /** Optional changes */
3930
+ optionalChanges: number;
3931
+ /** Breaking changes */
3932
+ breakingChanges: number;
3933
+ /** Prerequisites */
3934
+ prerequisites?: string[];
3935
+ /** Post-migration steps */
3936
+ postMigration?: string[];
3937
+ }
3938
+ /**
3939
+ * Change detection options
3940
+ */
3941
+ interface ChangeDetectionOptions {
3942
+ /** Compare nested types recursively */
3943
+ deep: boolean;
3944
+ /** Include private properties */
3945
+ includePrivate: boolean;
3946
+ /** Include deprecated properties */
3947
+ includeDeprecated: boolean;
3948
+ /** Custom ignore patterns */
3949
+ ignore?: string[];
3950
+ /** Custom equality function */
3951
+ equality?: (a: unknown, b: unknown) => boolean;
3952
+ }
3953
+ /**
3954
+ * Change detection result
3955
+ */
3956
+ interface ChangeDetectionResult<_T> {
3957
+ /** Type being compared */
3958
+ type: _T;
3959
+ /** Changes detected */
3960
+ changes: Change[];
3961
+ /** Has breaking changes */
3962
+ hasBreakingChanges: boolean;
3963
+ /** Change count */
3964
+ changeCount: number;
3965
+ }
3966
+ /**
3967
+ * Generic change
3968
+ */
3969
+ interface Change {
3970
+ /** Change ID */
3971
+ id: string;
3972
+ /** Change type */
3973
+ type: ChangeType;
3974
+ /** Path to the change */
3975
+ path: string;
3976
+ /** Old value */
3977
+ oldValue?: unknown;
3978
+ /** New value */
3979
+ newValue?: unknown;
3980
+ /** Breaking change flag */
3981
+ isBreaking: boolean;
3982
+ /** Description */
3983
+ description: string;
3984
+ }
3985
+ /**
3986
+ * Change type
3987
+ */
3988
+ type ChangeType = 'added' | 'removed' | 'modified' | 'renamed' | 'moved' | 'deprecated' | 'restored';
3989
+ /**
3990
+ * Version comparison result
3991
+ */
3992
+ interface VersionComparison {
3993
+ /** Source version */
3994
+ from: string;
3995
+ /** Target version */
3996
+ to: string;
3997
+ /** Changes between versions */
3998
+ changes: Change[];
3999
+ /** Breaking changes only */
4000
+ breakingChanges: BreakingChange[];
4001
+ /** Deprecations */
4002
+ deprecations: DeprecationChange[];
4003
+ /** New features */
4004
+ newFeatures: Change[];
4005
+ }
4006
+ /**
4007
+ * Deprecation change
4008
+ */
4009
+ interface DeprecationChange {
4010
+ /** API name */
4011
+ name: string;
4012
+ /** Deprecation version */
4013
+ since: string;
4014
+ /** Removal version */
4015
+ removedIn?: string;
4016
+ /** Replacement */
4017
+ replacement?: string;
4018
+ /** Reason */
4019
+ reason?: string;
4020
+ }
4021
+ /**
4022
+ * Version changelog
4023
+ */
4024
+ interface VersionChangelog {
4025
+ /** Version */
4026
+ version: string;
4027
+ /** Release date */
4028
+ date: Date;
4029
+ /** Summary */
4030
+ summary: string;
4031
+ /** Breaking changes */
4032
+ breaking: BreakingChange[];
4033
+ /** Features */
4034
+ features: Change[];
4035
+ /** Fixes */
4036
+ fixes: Change[];
4037
+ /** Deprecations */
4038
+ deprecations: DeprecationChange[];
4039
+ }
4040
+ /**
4041
+ * Impact analysis result
4042
+ */
4043
+ interface ImpactAnalysis {
4044
+ /** Analysis ID */
4045
+ id: string;
4046
+ /** Target changes */
4047
+ changes: BreakingChange[];
4048
+ /** Impact scope */
4049
+ scope: ImpactScope;
4050
+ /** Affected components */
4051
+ affectedComponents: AffectedComponent[];
4052
+ /** Risk level */
4053
+ riskLevel: RiskLevel;
4054
+ /** Recommendations */
4055
+ recommendations: ImpactRecommendation[];
4056
+ /** Mitigation strategies */
4057
+ mitigations: MitigationStrategy[];
4058
+ }
4059
+ /**
4060
+ * Impact scope
4061
+ */
4062
+ type ImpactScope = 'type' | 'module' | 'package' | 'project' | 'ecosystem';
4063
+ /**
4064
+ * Affected component
4065
+ */
4066
+ interface AffectedComponent {
4067
+ /** Component name */
4068
+ name: string;
4069
+ /** Component type */
4070
+ type: 'function' | 'class' | 'interface' | 'type' | 'module' | 'package';
4071
+ /** Usage count */
4072
+ usageCount: number;
4073
+ /** Impact severity */
4074
+ severity: 'low' | 'medium' | 'high' | 'critical';
4075
+ /** Required changes */
4076
+ requiredChanges: string[];
4077
+ }
4078
+ /**
4079
+ * Risk level
4080
+ */
4081
+ type RiskLevel = 'none' | 'low' | 'medium' | 'high' | 'critical';
4082
+ /**
4083
+ * Impact recommendation
4084
+ */
4085
+ interface ImpactRecommendation {
4086
+ /** Recommendation ID */
4087
+ id: string;
4088
+ /** Priority */
4089
+ priority: number;
4090
+ /** Description */
4091
+ description: string;
4092
+ /** Rationale */
4093
+ rationale: string;
4094
+ /** Effort estimate */
4095
+ effort: 'trivial' | 'low' | 'medium' | 'high';
4096
+ }
4097
+ /**
4098
+ * Mitigation strategy
4099
+ */
4100
+ interface MitigationStrategy {
4101
+ /** Strategy name */
4102
+ name: string;
4103
+ /** Description */
4104
+ description: string;
4105
+ /** Steps */
4106
+ steps: string[];
4107
+ /** Applicability */
4108
+ appliesTo: string[];
4109
+ /** Effectiveness (0-1) */
4110
+ effectiveness: number;
4111
+ }
4112
+ /**
4113
+ * Breaking change rule
4114
+ */
4115
+ interface BreakingChangeRule {
4116
+ /** Rule ID */
4117
+ id: string;
4118
+ /** Rule name */
4119
+ name: string;
4120
+ /** Rule description */
4121
+ description: string;
4122
+ /** Check function */
4123
+ check: (change: Change) => boolean;
4124
+ /** Severity */
4125
+ severity: BreakingChangeSeverity;
4126
+ /** Auto-fix available */
4127
+ autoFix: boolean;
4128
+ }
4129
+ /**
4130
+ * Breaking change guard
4131
+ */
4132
+ interface BreakingChangeGuard {
4133
+ /** Guard name */
4134
+ name: string;
4135
+ /** Enabled rules */
4136
+ rules: BreakingChangeRule[];
4137
+ /** Exceptions */
4138
+ exceptions?: string[];
4139
+ /** Custom checks */
4140
+ customChecks?: ((change: Change) => boolean)[];
4141
+ }
4142
+ /**
4143
+ * Breaking change prevention config
4144
+ */
4145
+ interface BreakingChangePreventionConfig {
4146
+ /** Enable prevention */
4147
+ enabled: boolean;
4148
+ /** Fail on breaking changes */
4149
+ failOnBreaking: boolean;
4150
+ /** Allowed severities */
4151
+ allowedSeverities: BreakingChangeSeverity[];
4152
+ /** Custom rules */
4153
+ customRules?: BreakingChangeRule[];
4154
+ /** Ignore patterns */
4155
+ ignore?: string[];
4156
+ }
4157
+ //#endregion
3672
4158
  //#region src/build-tools/index.d.ts
3673
4159
  /**
3674
4160
  * Build Tools Types
@@ -10157,116 +10643,463 @@ type DeepReadonly<T> = T extends BuiltIn ? T : T extends Map<infer K, infer V> ?
10157
10643
  */
10158
10644
  type DeepMutable<T> = T extends BuiltIn ? T : T extends Map<infer K, infer V> ? Map<DeepMutable<K>, DeepMutable<V>> : T extends Set<infer V> ? Set<DeepMutable<V>> : T extends readonly (infer E)[] ? DeepMutable<E>[] : T extends object ? { -readonly [P in keyof T]: DeepMutable<T[P]> } : T;
10159
10645
  //#endregion
10160
- //#region src/devops/index.d.ts
10646
+ //#region src/deprecation/index.d.ts
10161
10647
  /**
10162
- * DevOps Types
10163
- *
10164
- * Type definitions for DevOps and infrastructure tools.
10648
+ * Mark a type as deprecated since a specific version
10165
10649
  */
10650
+ type DeprecatedSince<T, Version extends string> = T & {
10651
+ __deprecated_since__: Version;
10652
+ };
10166
10653
  /**
10167
- * Dockerfile configuration
10654
+ * Mark a type to be removed in a future version
10168
10655
  */
10169
- interface Dockerfile {
10170
- from: string;
10171
- arg?: Record<string, string>;
10172
- env?: Record<string, string>;
10173
- workdir?: string;
10174
- copy?: DockerCopyInstruction | DockerCopyInstruction[];
10175
- run?: string | string[];
10176
- cmd?: string | string[];
10177
- expose?: number | number[];
10178
- entrypoint?: string | string[];
10179
- volume?: string | string[];
10180
- user?: string;
10181
- label?: Record<string, string>;
10182
- healthcheck?: DockerHealthCheck;
10183
- stopsignal?: string;
10184
- onbuild?: string[];
10185
- maintainer?: string;
10186
- }
10187
- interface DockerCopyInstruction {
10188
- src: string | string[];
10189
- dest: string;
10190
- from?: string;
10191
- chown?: string;
10192
- chmod?: string;
10193
- }
10194
- interface DockerHealthCheck {
10195
- cmd: string;
10196
- interval?: string;
10197
- timeout?: string;
10198
- startPeriod?: string;
10199
- retries?: number;
10200
- }
10656
+ type WillBeRemoved<T, Version extends string> = T & {
10657
+ __will_be_removed_in__: Version;
10658
+ };
10201
10659
  /**
10202
- * Docker image configuration
10660
+ * Replacement type marker
10203
10661
  */
10204
- interface DockerImage {
10205
- id: string;
10206
- repoTags: string[];
10207
- size: number;
10208
- virtualSize: number;
10209
- created: string;
10210
- labels: Record<string, string>;
10211
- architecture: string;
10212
- os: string;
10213
- digest: string;
10214
- }
10662
+ type Replacement<T, New> = T & {
10663
+ __replacement__: New;
10664
+ __migrate_to__: New;
10665
+ };
10215
10666
  /**
10216
- * Docker container configuration
10667
+ * Deprecation info
10217
10668
  */
10218
- interface DockerContainer {
10219
- id: string;
10669
+ interface DeprecationInfo {
10670
+ /** Deprecated type name */
10220
10671
  name: string;
10221
- image: string;
10222
- status: DockerContainerStatus;
10223
- state: 'running' | 'exited' | 'paused' | 'restarting' | 'dead';
10224
- created: string;
10225
- ports: DockerPort[];
10226
- labels: Record<string, string>;
10227
- command: string;
10228
- entrypoint?: string;
10229
- environment: Record<string, string>;
10230
- volumes: DockerVolume[];
10231
- networks: string[];
10232
- health?: DockerHealthStatus;
10233
- }
10234
- type DockerContainerStatus = 'created' | 'running' | 'paused' | 'restarting' | 'exited' | 'removing' | 'dead';
10235
- interface DockerPort {
10236
- privatePort: number;
10237
- publicPort?: number;
10238
- type: 'tcp' | 'udp';
10239
- ip?: string;
10240
- }
10241
- interface DockerVolume {
10242
- type: 'bind' | 'volume' | 'tmpfs' | 'npipe';
10243
- source: string;
10244
- destination: string;
10245
- mode?: string;
10246
- rw?: boolean;
10247
- propagation?: 'private' | 'shared' | 'slave' | 'rprivate' | 'rshared' | 'rslave';
10248
- }
10249
- interface DockerHealthStatus {
10250
- status: 'none' | 'starting' | 'healthy' | 'unhealthy';
10251
- failingStreak?: number;
10672
+ /** Deprecation message */
10673
+ message: string;
10674
+ /** Version when deprecated */
10675
+ since?: string;
10676
+ /** Version when it will be removed */
10677
+ willBeRemoved?: string;
10678
+ /** Replacement type */
10679
+ replacement?: string;
10680
+ /** Migration guide URL */
10681
+ migrationGuide?: string;
10682
+ /** Deprecation level */
10683
+ level: DeprecationLevel;
10252
10684
  }
10253
10685
  /**
10254
- * Docker Compose configuration
10686
+ * Deprecation level
10255
10687
  */
10256
- interface DockerCompose {
10257
- version?: string;
10258
- services: Record<string, DockerComposeService>;
10259
- networks?: Record<string, DockerComposeNetwork>;
10260
- volumes?: Record<string, DockerComposeVolume>;
10261
- configs?: Record<string, DockerComposeConfig>;
10262
- secrets?: Record<string, DockerComposeSecret>;
10263
- }
10264
- interface DockerComposeLoggingConfig {
10265
- driver?: string;
10266
- options?: Record<string, string>;
10267
- }
10268
- interface DockerComposeService {
10269
- image?: string;
10688
+ type DeprecationLevel = 'info' | 'warning' | 'error' | 'critical';
10689
+ /**
10690
+ * Legacy type wrapper for backwards compatibility
10691
+ */
10692
+ type Legacy<T> = T & {
10693
+ __legacy__: true;
10694
+ };
10695
+ /**
10696
+ * Create an alias for a deprecated type
10697
+ */
10698
+ type LegacyAlias<T, New extends string> = T & {
10699
+ __legacy_alias__: New;
10700
+ };
10701
+ /**
10702
+ * Backwards compatible type wrapper
10703
+ */
10704
+ type BackwardsCompatible<T, Old> = T & {
10705
+ __backwards_compatible_with__: Old;
10706
+ };
10707
+ /**
10708
+ * Polyfill type
10709
+ */
10710
+ type Polyfill<T, Implementation> = T & {
10711
+ __polyfill__: Implementation;
10712
+ };
10713
+ /**
10714
+ * Legacy API info
10715
+ */
10716
+ interface LegacyAPI {
10717
+ /** API name */
10718
+ name: string;
10719
+ /** Original version */
10720
+ fromVersion: string;
10721
+ /** Supported until version */
10722
+ supportedUntil?: string;
10723
+ /** Replacement API */
10724
+ replacement?: string;
10725
+ /** Compatibility shim available */
10726
+ shimAvailable?: boolean;
10727
+ }
10728
+ /**
10729
+ * Warning type
10730
+ */
10731
+ type Warning<T> = T & {
10732
+ __warning__: true;
10733
+ };
10734
+ /**
10735
+ * Warning level
10736
+ */
10737
+ type WarningLevel = 'info' | 'warning' | 'error';
10738
+ /**
10739
+ * Deprecation warning
10740
+ */
10741
+ interface DeprecationWarning<T> {
10742
+ /** Warning code */
10743
+ code: string;
10744
+ /** Warning message */
10745
+ message: string;
10746
+ /** Deprecated type */
10747
+ type: T;
10748
+ /** Deprecation version */
10749
+ version?: string;
10750
+ /** Suggested replacement */
10751
+ replacement?: string;
10752
+ /** Warning level */
10753
+ level: WarningLevel;
10754
+ }
10755
+ /**
10756
+ * Deprecation migration warning (v1.11.0)
10757
+ */
10758
+ interface DeprecationMigrationWarning<T> {
10759
+ /** Warning code */
10760
+ code: string;
10761
+ /** Warning message */
10762
+ message: string;
10763
+ /** Type being migrated */
10764
+ type: T;
10765
+ /** Migration path */
10766
+ migrationPath?: string;
10767
+ /** Breaking change flag */
10768
+ isBreaking?: boolean;
10769
+ /** Suggested action */
10770
+ suggestion?: string;
10771
+ }
10772
+ /**
10773
+ * Warning configuration
10774
+ */
10775
+ interface WarningConfig {
10776
+ /** Enable/disable warnings */
10777
+ enabled: boolean;
10778
+ /** Minimum level to show */
10779
+ minLevel: WarningLevel;
10780
+ /** Suppress specific codes */
10781
+ suppressCodes?: string[];
10782
+ /** Log handler */
10783
+ logHandler?: (warning: DeprecationWarning<unknown>) => void;
10784
+ }
10785
+ /**
10786
+ * Version gate - type only available between versions
10787
+ */
10788
+ type VersionGate<T, Min extends string, Max extends string> = T & {
10789
+ __min_version__: Min;
10790
+ __max_version__: Max;
10791
+ };
10792
+ /**
10793
+ * Mark a type as removed in a specific version
10794
+ */
10795
+ type RemovedIn<T, Version extends string> = T & {
10796
+ __removed_in__: Version;
10797
+ };
10798
+ /**
10799
+ * Mark a type as introduced in a specific version
10800
+ */
10801
+ type IntroducedIn<T, Version extends string> = T & {
10802
+ __introduced_in__: Version;
10803
+ };
10804
+ /**
10805
+ * Version-specific API
10806
+ */
10807
+ type VersionedAPI<T, V extends string> = T & {
10808
+ __version__: V;
10809
+ };
10810
+ /**
10811
+ * Version range
10812
+ */
10813
+ interface VersionRange {
10814
+ /** Minimum version (inclusive) */
10815
+ min?: string;
10816
+ /** Maximum version (exclusive) */
10817
+ max?: string;
10818
+ /** Whether min is inclusive */
10819
+ minInclusive?: boolean;
10820
+ /** Whether max is inclusive */
10821
+ maxInclusive?: boolean;
10822
+ }
10823
+ /**
10824
+ * Version constraint
10825
+ */
10826
+ interface VersionConstraint {
10827
+ /** Version requirement string */
10828
+ requirement: string;
10829
+ /** Constraint type */
10830
+ type: 'exact' | 'range' | 'gte' | 'lte' | 'gt' | 'lt';
10831
+ }
10832
+ /**
10833
+ * Sunset (end-of-life) type marker
10834
+ */
10835
+ type Sunset<T> = T & {
10836
+ __sunset__: true;
10837
+ };
10838
+ /**
10839
+ * Sunset schedule
10840
+ */
10841
+ interface SunsetSchedule<T> {
10842
+ /** Type being sunset */
10843
+ type: T;
10844
+ /** Announcement date */
10845
+ announced: Date;
10846
+ /** Deprecation date */
10847
+ deprecated: Date;
10848
+ /** Removal date */
10849
+ removed: Date;
10850
+ /** Sunset phases */
10851
+ phases: SunsetPhase[];
10852
+ }
10853
+ /**
10854
+ * Sunset phase
10855
+ */
10856
+ interface SunsetPhase {
10857
+ /** Phase name */
10858
+ name: string;
10859
+ /** Phase start date */
10860
+ startDate: Date;
10861
+ /** Phase end date */
10862
+ endDate?: Date;
10863
+ /** Phase description */
10864
+ description: string;
10865
+ /** Warning level during phase */
10866
+ warningLevel: WarningLevel;
10867
+ }
10868
+ /**
10869
+ * End-of-life info
10870
+ */
10871
+ interface EndOfLife<T> {
10872
+ /** Type reaching end-of-life */
10873
+ type: T;
10874
+ /** EOL date */
10875
+ date: Date;
10876
+ /** Reason for EOL */
10877
+ reason?: string;
10878
+ /** Migration path */
10879
+ migrationPath?: string;
10880
+ }
10881
+ /**
10882
+ * Sunset policy
10883
+ */
10884
+ interface SunsetPolicy {
10885
+ /** Policy name */
10886
+ name: string;
10887
+ /** Deprecation notice period in days */
10888
+ noticePeriod: number;
10889
+ /** Warning escalation schedule */
10890
+ escalationSchedule: SunsetPhase[];
10891
+ /** Minimum supported versions */
10892
+ minSupportedVersions: Record<string, string>;
10893
+ }
10894
+ /**
10895
+ * Deprecation status
10896
+ */
10897
+ type DeprecationStatus = 'active' | 'deprecated' | 'warning' | 'critical' | 'removed';
10898
+ /**
10899
+ * Deprecation tracker
10900
+ */
10901
+ interface DeprecationTracker {
10902
+ /** Deprecated items */
10903
+ items: Map<string, DeprecationInfo>;
10904
+ /** Add deprecation */
10905
+ add: (name: string, info: DeprecationInfo) => void;
10906
+ /** Get deprecation */
10907
+ get: (name: string) => DeprecationInfo | undefined;
10908
+ /** Check if deprecated */
10909
+ isDeprecated: (name: string) => boolean;
10910
+ /** Get all deprecated */
10911
+ getAll: () => DeprecationInfo[];
10912
+ /** Get by level */
10913
+ getByLevel: (level: DeprecationLevel) => DeprecationInfo[];
10914
+ }
10915
+ /**
10916
+ * Deprecation registry
10917
+ */
10918
+ interface DeprecationRegistry {
10919
+ /** Registry version */
10920
+ version: string;
10921
+ /** Registered deprecations */
10922
+ deprecations: Record<string, DeprecationInfo>;
10923
+ /** Last updated */
10924
+ lastUpdated: Date;
10925
+ /** Registry URL */
10926
+ registryUrl?: string;
10927
+ }
10928
+ /**
10929
+ * Deprecation check options
10930
+ */
10931
+ interface DeprecationCheckOptions {
10932
+ /** Check only (don't throw) */
10933
+ checkOnly?: boolean;
10934
+ /** Include legacy types */
10935
+ includeLegacy?: boolean;
10936
+ /** Filter by version */
10937
+ versionRange?: VersionRange;
10938
+ /** Custom filter */
10939
+ filter?: (info: DeprecationInfo) => boolean;
10940
+ }
10941
+ /**
10942
+ * Deprecation check result
10943
+ */
10944
+ interface DeprecationCheckResult {
10945
+ /** Has deprecations */
10946
+ hasDeprecations: boolean;
10947
+ /** Deprecation count */
10948
+ count: number;
10949
+ /** Deprecations found */
10950
+ deprecations: DeprecationInfo[];
10951
+ /** Warnings */
10952
+ warnings: string[];
10953
+ /** Errors */
10954
+ errors: string[];
10955
+ }
10956
+ /**
10957
+ * Migration suggestion
10958
+ */
10959
+ interface MigrationSuggestion {
10960
+ /** Deprecated type */
10961
+ from: string;
10962
+ /** Replacement type */
10963
+ to: string;
10964
+ /** Migration difficulty */
10965
+ difficulty: 'trivial' | 'simple' | 'moderate' | 'complex';
10966
+ /** Migration steps */
10967
+ steps: string[];
10968
+ /** Code example */
10969
+ codeExample?: string;
10970
+ /** Documentation link */
10971
+ docs?: string;
10972
+ }
10973
+ /**
10974
+ * Deprecation announcement
10975
+ */
10976
+ interface DeprecationAnnouncement {
10977
+ /** Announcement ID */
10978
+ id: string;
10979
+ /** Announcement title */
10980
+ title: string;
10981
+ /** Announcement date */
10982
+ date: Date;
10983
+ /** Affected types */
10984
+ affectedTypes: string[];
10985
+ /** Deprecation details */
10986
+ details: DeprecationInfo[];
10987
+ /** Migration deadline */
10988
+ deadline?: Date;
10989
+ /** Announcement URL */
10990
+ url?: string;
10991
+ }
10992
+ //#endregion
10993
+ //#region src/devops/index.d.ts
10994
+ /**
10995
+ * DevOps Types
10996
+ *
10997
+ * Type definitions for DevOps and infrastructure tools.
10998
+ */
10999
+ /**
11000
+ * Dockerfile configuration
11001
+ */
11002
+ interface Dockerfile {
11003
+ from: string;
11004
+ arg?: Record<string, string>;
11005
+ env?: Record<string, string>;
11006
+ workdir?: string;
11007
+ copy?: DockerCopyInstruction | DockerCopyInstruction[];
11008
+ run?: string | string[];
11009
+ cmd?: string | string[];
11010
+ expose?: number | number[];
11011
+ entrypoint?: string | string[];
11012
+ volume?: string | string[];
11013
+ user?: string;
11014
+ label?: Record<string, string>;
11015
+ healthcheck?: DockerHealthCheck;
11016
+ stopsignal?: string;
11017
+ onbuild?: string[];
11018
+ maintainer?: string;
11019
+ }
11020
+ interface DockerCopyInstruction {
11021
+ src: string | string[];
11022
+ dest: string;
11023
+ from?: string;
11024
+ chown?: string;
11025
+ chmod?: string;
11026
+ }
11027
+ interface DockerHealthCheck {
11028
+ cmd: string;
11029
+ interval?: string;
11030
+ timeout?: string;
11031
+ startPeriod?: string;
11032
+ retries?: number;
11033
+ }
11034
+ /**
11035
+ * Docker image configuration
11036
+ */
11037
+ interface DockerImage {
11038
+ id: string;
11039
+ repoTags: string[];
11040
+ size: number;
11041
+ virtualSize: number;
11042
+ created: string;
11043
+ labels: Record<string, string>;
11044
+ architecture: string;
11045
+ os: string;
11046
+ digest: string;
11047
+ }
11048
+ /**
11049
+ * Docker container configuration
11050
+ */
11051
+ interface DockerContainer {
11052
+ id: string;
11053
+ name: string;
11054
+ image: string;
11055
+ status: DockerContainerStatus;
11056
+ state: 'running' | 'exited' | 'paused' | 'restarting' | 'dead';
11057
+ created: string;
11058
+ ports: DockerPort[];
11059
+ labels: Record<string, string>;
11060
+ command: string;
11061
+ entrypoint?: string;
11062
+ environment: Record<string, string>;
11063
+ volumes: DockerVolume[];
11064
+ networks: string[];
11065
+ health?: DockerHealthStatus;
11066
+ }
11067
+ type DockerContainerStatus = 'created' | 'running' | 'paused' | 'restarting' | 'exited' | 'removing' | 'dead';
11068
+ interface DockerPort {
11069
+ privatePort: number;
11070
+ publicPort?: number;
11071
+ type: 'tcp' | 'udp';
11072
+ ip?: string;
11073
+ }
11074
+ interface DockerVolume {
11075
+ type: 'bind' | 'volume' | 'tmpfs' | 'npipe';
11076
+ source: string;
11077
+ destination: string;
11078
+ mode?: string;
11079
+ rw?: boolean;
11080
+ propagation?: 'private' | 'shared' | 'slave' | 'rprivate' | 'rshared' | 'rslave';
11081
+ }
11082
+ interface DockerHealthStatus {
11083
+ status: 'none' | 'starting' | 'healthy' | 'unhealthy';
11084
+ failingStreak?: number;
11085
+ }
11086
+ /**
11087
+ * Docker Compose configuration
11088
+ */
11089
+ interface DockerCompose {
11090
+ version?: string;
11091
+ services: Record<string, DockerComposeService>;
11092
+ networks?: Record<string, DockerComposeNetwork>;
11093
+ volumes?: Record<string, DockerComposeVolume>;
11094
+ configs?: Record<string, DockerComposeConfig>;
11095
+ secrets?: Record<string, DockerComposeSecret>;
11096
+ }
11097
+ interface DockerComposeLoggingConfig {
11098
+ driver?: string;
11099
+ options?: Record<string, string>;
11100
+ }
11101
+ interface DockerComposeService {
11102
+ image?: string;
10270
11103
  build?: string | DockerComposeBuild;
10271
11104
  container_name?: string;
10272
11105
  ports?: string[];
@@ -13528,64 +14361,523 @@ interface DocCompleteness {
13528
14361
  missingReturns: number;
13529
14362
  }
13530
14363
  /**
13531
- | Documentation accessibility
14364
+ | Documentation accessibility
14365
+ */
14366
+ interface DocAccessibility {
14367
+ searchable: boolean;
14368
+ indexed: boolean;
14369
+ categorized: boolean;
14370
+ hasToc: boolean;
14371
+ hasBreadcrumbs: boolean;
14372
+ mobileFriendly: boolean;
14373
+ }
14374
+ //#endregion
14375
+ //#region src/ecosystem/prisma.d.ts
14376
+ /**
14377
+ * Prisma create input type
14378
+ *
14379
+ * @example
14380
+ * ```ts
14381
+ * type CreateInput = PrismaCreateInput<User>
14382
+ * // { name: string; email: string; age?: number }
14383
+ * ```
14384
+ */
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
+ /**
14389
+ * React component props utilities
14390
+ *
14391
+ * These types help work with React component props.
14392
+ * Note: React is an optional peer dependency.
14393
+ */
14394
+ /**
14395
+ * Extract props from a React component
14396
+ *
14397
+ * @example
14398
+ * ```tsx
14399
+ * import type { ComponentProps } from 'uni-types'
14400
+ *
14401
+ * type ButtonProps = ComponentProps<'button'>
14402
+ * type InputProps = ComponentProps<'input'>
14403
+ * ```
14404
+ */
14405
+ type ComponentProps<T> = T extends keyof JSX.IntrinsicElements ? JSX.IntrinsicElements[T] : T extends ReactComponentType<infer P> ? P : never;
14406
+ /**
14407
+ * Add children to props
14408
+ *
14409
+ * @example
14410
+ * ```tsx
14411
+ * type Props = PropsWithChildren<{ name: string }>
14412
+ * // { name: string; children?: React.ReactNode }
14413
+ * ```
14414
+ */
14415
+ type PropsWithChildren<P = unknown> = P & {
14416
+ children?: ReactNode;
14417
+ };
14418
+ type ReactComponentType<P = unknown> = (props: P) => unknown;
14419
+ type ReactNode = unknown;
14420
+ declare namespace JSX {
14421
+ type IntrinsicElements = Record<string, unknown>;
14422
+ }
14423
+ //#endregion
14424
+ //#region src/enhanced-error/index.d.ts
14425
+ /**
14426
+ * Enhanced Error Messages (v1.11.0)
14427
+ *
14428
+ * Better error messages and debugging utilities for TypeScript types.
14429
+ */
14430
+ /**
14431
+ * Detailed error type
14432
+ */
14433
+ type DetailedError<T> = T & {
14434
+ __error_details__: ErrorDetails;
14435
+ };
14436
+ /**
14437
+ * Error details
14438
+ */
14439
+ interface ErrorDetails {
14440
+ /** Error code */
14441
+ code: string;
14442
+ /** Error message */
14443
+ message: string;
14444
+ /** Error category */
14445
+ category: ErrorCategory;
14446
+ /** Error context */
14447
+ context?: ErrorContext;
14448
+ /** Suggested fix */
14449
+ suggestion?: string;
14450
+ /** Related documentation */
14451
+ docs?: string;
14452
+ /** Stack trace */
14453
+ stack?: string;
14454
+ /** Timestamp */
14455
+ timestamp?: number;
14456
+ }
14457
+ /**
14458
+ * Error category
14459
+ */
14460
+ type ErrorCategory = 'type' | 'syntax' | 'semantic' | 'constraint' | 'runtime' | 'validation' | 'assertion' | 'inference';
14461
+ /**
14462
+ * Typed error with specific error type
14463
+ */
14464
+ interface TypedError<T extends ErrorCategory> {
14465
+ /** Error category */
14466
+ category: T;
14467
+ /** Error message */
14468
+ message: string;
14469
+ /** Error code */
14470
+ code: string;
14471
+ }
14472
+ /**
14473
+ * Error context information
14474
+ */
14475
+ interface ErrorContext<T = unknown> {
14476
+ /** Original type */
14477
+ originalType?: T;
14478
+ /** Expected type */
14479
+ expectedType?: string;
14480
+ /** Actual type */
14481
+ actualType?: string;
14482
+ /** Property path */
14483
+ path?: string[];
14484
+ /** Line number */
14485
+ line?: number;
14486
+ /** Column number */
14487
+ column?: number;
14488
+ /** File path */
14489
+ filePath?: string;
14490
+ /** Additional context data */
14491
+ data?: Record<string, unknown>;
14492
+ }
14493
+ /**
14494
+ * Error suggestion
14495
+ */
14496
+ type ErrorSuggestion<T> = T & {
14497
+ __suggestion__: SuggestionInfo;
14498
+ };
14499
+ /**
14500
+ * Suggestion info
14501
+ */
14502
+ interface SuggestionInfo {
14503
+ /** Suggestion message */
14504
+ message: string;
14505
+ /** Code example */
14506
+ example?: string;
14507
+ /** Documentation link */
14508
+ docs?: string;
14509
+ /** Auto-fix available */
14510
+ autoFix?: boolean;
14511
+ /** Fix command */
14512
+ fixCommand?: string;
14513
+ }
14514
+ /**
14515
+ * Diagnostic info
14516
+ */
14517
+ interface DiagnosticInfo {
14518
+ /** Diagnostic code */
14519
+ code: DiagnosticCode;
14520
+ /** Diagnostic message */
14521
+ message: string;
14522
+ /** Diagnostic severity */
14523
+ severity: DiagnosticSeverity;
14524
+ /** Source */
14525
+ source?: string;
14526
+ /** Related information */
14527
+ related?: RelatedDiagnostic[];
14528
+ }
14529
+ /**
14530
+ * Diagnostic severity levels
14531
+ */
14532
+ type DiagnosticSeverity = 'error' | 'warning' | 'info' | 'hint';
14533
+ /**
14534
+ * Diagnostic code type
14535
+ */
14536
+ type DiagnosticCode = string | number;
14537
+ /**
14538
+ * Diagnostic message
14539
+ */
14540
+ interface DiagnosticMessage<T> {
14541
+ /** Target type */
14542
+ type: T;
14543
+ /** Message text */
14544
+ text: string;
14545
+ /** Message category */
14546
+ category: DiagnosticSeverity;
14547
+ }
14548
+ /**
14549
+ * Related diagnostic
14550
+ */
14551
+ interface RelatedDiagnostic {
14552
+ /** Related message */
14553
+ message: string;
14554
+ /** Location */
14555
+ location?: DiagnosticLocation;
14556
+ /** Relationship type */
14557
+ relation?: 'cause' | 'effect' | 'related';
14558
+ }
14559
+ /**
14560
+ * Diagnostic location
14561
+ */
14562
+ interface DiagnosticLocation {
14563
+ /** File path */
14564
+ file: string;
14565
+ /** Start line */
14566
+ startLine: number;
14567
+ /** Start column */
14568
+ startColumn: number;
14569
+ /** End line */
14570
+ endLine?: number;
14571
+ /** End column */
14572
+ endColumn?: number;
14573
+ }
14574
+ /**
14575
+ * Type mismatch error
14576
+ */
14577
+ interface TypeMismatch<T, Expected> {
14578
+ /** Actual type */
14579
+ actual: T;
14580
+ /** Expected type */
14581
+ expected: Expected;
14582
+ /** Error message */
14583
+ message: string;
14584
+ /** Mismatch details */
14585
+ details: MismatchDetails;
14586
+ }
14587
+ /**
14588
+ * Mismatch details
14589
+ */
14590
+ interface MismatchDetails {
14591
+ /** Type of mismatch */
14592
+ kind: MismatchKind;
14593
+ /** Location of mismatch */
14594
+ location?: string;
14595
+ /** Additional info */
14596
+ info?: string;
14597
+ }
14598
+ /**
14599
+ * Mismatch kind
14600
+ */
14601
+ type MismatchKind = 'type' | 'structure' | 'value' | 'constraint' | 'missing_property' | 'extra_property' | 'nullability' | 'optionality' | 'arity' | 'return_type' | 'parameter_type';
14602
+ /**
14603
+ * Missing property error
14604
+ */
14605
+ interface MissingProperty<T, K extends keyof T> {
14606
+ /** Object type */
14607
+ object: T;
14608
+ /** Missing key */
14609
+ key: K;
14610
+ /** Error message */
14611
+ message: string;
14612
+ }
14613
+ /**
14614
+ * Invalid type error
14615
+ */
14616
+ interface InvalidType<T, Valid> {
14617
+ /** Invalid type */
14618
+ invalid: T;
14619
+ /** Valid types */
14620
+ valid: Valid;
14621
+ /** Error message */
14622
+ message: string;
14623
+ }
14624
+ /**
14625
+ * Constraint violation error
14626
+ */
14627
+ interface ConstraintViolation<T, Constraint> {
14628
+ /** Violating type */
14629
+ type: T;
14630
+ /** Constraint */
14631
+ constraint: Constraint;
14632
+ /** Violation details */
14633
+ details: string;
14634
+ }
14635
+ /**
14636
+ * Recoverable error type
14637
+ */
14638
+ type RecoverableError<T> = T & {
14639
+ __recoverable__: true;
14640
+ __recovery_options__: RecoveryOption[];
14641
+ };
14642
+ /**
14643
+ * Error recovery type
14644
+ */
14645
+ interface ErrorRecovery<T> {
14646
+ /** Original error */
14647
+ error: T;
14648
+ /** Recovery strategy */
14649
+ strategy: RecoveryStrategy$1;
14650
+ /** Recovered value */
14651
+ recovered?: unknown;
14652
+ /** Recovery successful */
14653
+ success?: boolean;
14654
+ }
14655
+ /**
14656
+ * Recovery strategy
14657
+ */
14658
+ type RecoveryStrategy$1 = 'fallback' | 'default' | 'skip' | 'retry' | 'transform' | 'ignore' | 'abort';
14659
+ /**
14660
+ * Recovery option
14661
+ */
14662
+ interface RecoveryOption {
14663
+ /** Option name */
14664
+ name: string;
14665
+ /** Strategy type */
14666
+ strategy: RecoveryStrategy$1;
14667
+ /** Description */
14668
+ description: string;
14669
+ /** Recovery value */
14670
+ value?: unknown;
14671
+ /** Whether this is the default */
14672
+ isDefault?: boolean;
14673
+ }
14674
+ /**
14675
+ * Fallback type
14676
+ */
14677
+ type FallbackType<T, Fallback> = T extends Fallback ? T : Fallback;
14678
+ /**
14679
+ * Graceful degradation type
14680
+ */
14681
+ type GracefulDegradation<T> = T | DegradedValue;
14682
+ /**
14683
+ * Degraded value
14684
+ */
14685
+ interface DegradedValue {
14686
+ __degraded__: true;
14687
+ original?: unknown;
14688
+ reason?: string;
14689
+ }
14690
+ /**
14691
+ * Help message type
14692
+ */
14693
+ type HelpMessage<T> = T & {
14694
+ __help__: HelpInfo;
14695
+ };
14696
+ /**
14697
+ * Help info
14698
+ */
14699
+ interface HelpInfo {
14700
+ /** Help text */
14701
+ text: string;
14702
+ /** Documentation URL */
14703
+ url?: string;
14704
+ /** Examples */
14705
+ examples?: HelpExample[];
14706
+ /** Related topics */
14707
+ related?: string[];
14708
+ }
14709
+ /**
14710
+ * Help example
14711
+ */
14712
+ interface HelpExample {
14713
+ /** Example title */
14714
+ title: string;
14715
+ /** Example code */
14716
+ code: string;
14717
+ /** Example explanation */
14718
+ explanation?: string;
14719
+ }
14720
+ /**
14721
+ * Documentation link type
14722
+ */
14723
+ type DocumentationLink<T> = T & {
14724
+ __docs__: string;
14725
+ };
14726
+ /**
14727
+ * Example usage type
14728
+ */
14729
+ type ExampleUsage<T> = T & {
14730
+ __example__: string;
14731
+ };
14732
+ /**
14733
+ * Quick fix type
14734
+ */
14735
+ type QuickFix<T> = T & {
14736
+ __quick_fix__: QuickFixInfo;
14737
+ };
14738
+ /**
14739
+ * Quick fix info
14740
+ */
14741
+ interface QuickFixInfo {
14742
+ /** Fix description */
14743
+ description: string;
14744
+ /** Fix action */
14745
+ action: QuickFixAction;
14746
+ /** Fix confidence */
14747
+ confidence: 'high' | 'medium' | 'low';
14748
+ }
14749
+ /**
14750
+ * Quick fix action
14751
+ */
14752
+ type QuickFixAction = 'replace' | 'insert' | 'delete' | 'rename' | 'refactor';
14753
+ /**
14754
+ * Error report
14755
+ */
14756
+ interface ErrorReport {
14757
+ /** Report ID */
14758
+ id: string;
14759
+ /** Timestamp */
14760
+ timestamp: Date;
14761
+ /** Error count */
14762
+ errorCount: number;
14763
+ /** Warning count */
14764
+ warningCount: number;
14765
+ /** Errors */
14766
+ errors: ReportedError[];
14767
+ /** Warnings */
14768
+ warnings: ReportedWarning[];
14769
+ /** Summary */
14770
+ summary: string;
14771
+ }
14772
+ /**
14773
+ * Reported error
13532
14774
  */
13533
- interface DocAccessibility {
13534
- searchable: boolean;
13535
- indexed: boolean;
13536
- categorized: boolean;
13537
- hasToc: boolean;
13538
- hasBreadcrumbs: boolean;
13539
- mobileFriendly: boolean;
14775
+ interface ReportedError {
14776
+ /** Error ID */
14777
+ id: string;
14778
+ /** Error code */
14779
+ code: string;
14780
+ /** Error message */
14781
+ message: string;
14782
+ /** Category */
14783
+ category: ErrorCategory;
14784
+ /** Location */
14785
+ location?: DiagnosticLocation;
14786
+ /** Suggestions */
14787
+ suggestions?: SuggestionInfo[];
14788
+ /** Related info */
14789
+ related?: RelatedDiagnostic[];
13540
14790
  }
13541
- //#endregion
13542
- //#region src/ecosystem/prisma.d.ts
13543
- /**
13544
- * Prisma create input type
13545
- *
13546
- * @example
13547
- * ```ts
13548
- * type CreateInput = PrismaCreateInput<User>
13549
- * // { name: string; email: string; age?: number }
13550
- * ```
13551
- */
13552
- 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] };
13553
- //#endregion
13554
- //#region src/ecosystem/react.d.ts
13555
14791
  /**
13556
- * React component props utilities
13557
- *
13558
- * These types help work with React component props.
13559
- * Note: React is an optional peer dependency.
14792
+ * Reported warning
13560
14793
  */
14794
+ interface ReportedWarning {
14795
+ /** Warning ID */
14796
+ id: string;
14797
+ /** Warning code */
14798
+ code: string;
14799
+ /** Warning message */
14800
+ message: string;
14801
+ /** Severity */
14802
+ severity: DiagnosticSeverity;
14803
+ /** Location */
14804
+ location?: DiagnosticLocation;
14805
+ /** Suggestions */
14806
+ suggestions?: SuggestionInfo[];
14807
+ }
13561
14808
  /**
13562
- * Extract props from a React component
13563
- *
13564
- * @example
13565
- * ```tsx
13566
- * import type { ComponentProps } from 'uni-types'
13567
- *
13568
- * type ButtonProps = ComponentProps<'button'>
13569
- * type InputProps = ComponentProps<'input'>
13570
- * ```
14809
+ * Error reporter configuration
13571
14810
  */
13572
- type ComponentProps<T> = T extends keyof JSX.IntrinsicElements ? JSX.IntrinsicElements[T] : T extends ReactComponentType<infer P> ? P : never;
14811
+ interface ErrorReporterConfig {
14812
+ /** Enable error reporting */
14813
+ enabled: boolean;
14814
+ /** Include stack traces */
14815
+ includeStackTraces: boolean;
14816
+ /** Include suggestions */
14817
+ includeSuggestions: boolean;
14818
+ /** Include documentation links */
14819
+ includeDocs: boolean;
14820
+ /** Maximum errors to report */
14821
+ maxErrors?: number;
14822
+ /** Maximum warnings to report */
14823
+ maxWarnings?: number;
14824
+ /** Output format */
14825
+ format: 'text' | 'json' | 'markdown' | 'html';
14826
+ }
14827
+ /**
14828
+ * Error filter
14829
+ */
14830
+ interface ErrorFilter {
14831
+ /** Filter by category */
14832
+ category?: ErrorCategory[];
14833
+ /** Filter by severity */
14834
+ severity?: DiagnosticSeverity[];
14835
+ /** Filter by code */
14836
+ code?: DiagnosticCode[];
14837
+ /** Exclude codes */
14838
+ excludeCode?: DiagnosticCode[];
14839
+ /** Custom filter function */
14840
+ filter?: (error: ReportedError) => boolean;
14841
+ }
14842
+ /**
14843
+ * Common error types
14844
+ */
14845
+ type CommonErrorType = 'type_error' | 'syntax_error' | 'reference_error' | 'range_error' | 'constraint_error' | 'assertion_error' | 'null_error' | 'undefined_error' | 'property_error' | 'argument_error' | 'return_error' | 'generic_error';
14846
+ /**
14847
+ * Error type catalog entry
14848
+ */
14849
+ interface ErrorCatalogEntry {
14850
+ /** Error code */
14851
+ code: string;
14852
+ /** Error type */
14853
+ type: CommonErrorType;
14854
+ /** Error name */
14855
+ name: string;
14856
+ /** Default message */
14857
+ message: string;
14858
+ /** Description */
14859
+ description: string;
14860
+ /** Category */
14861
+ category: ErrorCategory;
14862
+ /** Common causes */
14863
+ commonCauses: string[];
14864
+ /** Suggested fixes */
14865
+ suggestedFixes: string[];
14866
+ /** Documentation */
14867
+ docs?: string;
14868
+ }
13573
14869
  /**
13574
- * Add children to props
13575
- *
13576
- * @example
13577
- * ```tsx
13578
- * type Props = PropsWithChildren<{ name: string }>
13579
- * // { name: string; children?: React.ReactNode }
13580
- * ```
14870
+ * Error catalog
13581
14871
  */
13582
- type PropsWithChildren<P = unknown> = P & {
13583
- children?: ReactNode;
13584
- };
13585
- type ReactComponentType<P = unknown> = (props: P) => unknown;
13586
- type ReactNode = unknown;
13587
- declare namespace JSX {
13588
- type IntrinsicElements = Record<string, unknown>;
14872
+ interface ErrorCatalog {
14873
+ /** Catalog version */
14874
+ version: string;
14875
+ /** Entries */
14876
+ entries: Record<string, ErrorCatalogEntry>;
14877
+ /** Categories */
14878
+ categories: ErrorCategory[];
14879
+ /** Last updated */
14880
+ lastUpdated: Date;
13589
14881
  }
13590
14882
  //#endregion
13591
14883
  //#region src/error-handling/index.d.ts
@@ -21110,109 +22402,551 @@ interface CircuitBreaker<T = unknown> {
21110
22402
  close: () => void;
21111
22403
  }
21112
22404
  /**
21113
- * Circuit breaker state
22405
+ * Circuit breaker state
22406
+ */
22407
+ type CircuitBreakerState = 'closed' | 'open' | 'half-open';
22408
+ /**
22409
+ * Circuit breaker configuration
22410
+ */
22411
+ interface CircuitBreakerConfig {
22412
+ failureThreshold: number;
22413
+ successThreshold: number;
22414
+ timeout: number;
22415
+ resetTimeout: number;
22416
+ volumeThreshold?: number;
22417
+ onStateChange?: (oldState: CircuitBreakerState, newState: CircuitBreakerState) => void;
22418
+ onFailure?: (error: Error) => void;
22419
+ onSuccess?: () => void;
22420
+ }
22421
+ /**
22422
+ * Circuit breaker stats
22423
+ */
22424
+ interface CircuitBreakerStats {
22425
+ state: CircuitBreakerState;
22426
+ failures: number;
22427
+ successes: number;
22428
+ rejects: number;
22429
+ timeouts: number;
22430
+ lastFailure?: Date;
22431
+ lastSuccess?: Date;
22432
+ }
22433
+ /**
22434
+ * Load balancer type
22435
+ */
22436
+ interface LoadBalancer {
22437
+ select: (instances: ServiceInstance[]) => ServiceInstance | undefined;
22438
+ getStrategy: () => LoadBalancerStrategy;
22439
+ setStrategy: (strategy: LoadBalancerStrategy) => void;
22440
+ }
22441
+ /**
22442
+ * Load balancer strategy
22443
+ */
22444
+ type LoadBalancerStrategy = 'round-robin' | 'least-connections' | 'random' | 'weighted' | 'ip-hash';
22445
+ /**
22446
+ * Service instance type
22447
+ */
22448
+ interface ServiceInstance {
22449
+ id: string;
22450
+ name: string;
22451
+ host: string;
22452
+ port: number;
22453
+ version: string;
22454
+ status: InstanceStatus;
22455
+ metadata?: Record<string, unknown>;
22456
+ weight?: number;
22457
+ connections?: number;
22458
+ lastHeartbeat?: Date;
22459
+ }
22460
+ /**
22461
+ * Instance status
22462
+ */
22463
+ type InstanceStatus = 'healthy' | 'unhealthy' | 'draining' | 'starting' | 'stopping';
22464
+ /**
22465
+ * Health check type
22466
+ */
22467
+ interface HealthCheck {
22468
+ name: string;
22469
+ check: () => Promise<HealthCheckResult$2>;
22470
+ interval?: number;
22471
+ timeout?: number;
22472
+ critical?: boolean;
22473
+ }
22474
+ /**
22475
+ * Health status
22476
+ */
22477
+ type HealthStatus = 'healthy' | 'unhealthy' | 'degraded';
22478
+ /**
22479
+ * Health report type
22480
+ */
22481
+ interface HealthReport<T = unknown> {
22482
+ status: HealthStatus;
22483
+ timestamp: Date;
22484
+ service: string;
22485
+ version: string;
22486
+ uptime: number;
22487
+ checks: Record<string, HealthCheckResult$2>;
22488
+ details?: T;
22489
+ }
22490
+ /**
22491
+ * Health check result
22492
+ */
22493
+ interface HealthCheckResult$2 {
22494
+ status: HealthStatus;
22495
+ message?: string;
22496
+ timestamp: Date;
22497
+ duration?: number;
22498
+ details?: unknown;
22499
+ }
22500
+ /**
22501
+ * Environment type
22502
+ */
22503
+ type Environment = 'development' | 'staging' | 'production' | 'test';
22504
+ /**
22505
+ * HTTP method
22506
+ */
22507
+ type HTTPMethod$1 = 'GET' | 'POST' | 'PUT' | 'DELETE' | 'PATCH' | 'HEAD' | 'OPTIONS';
22508
+ //#endregion
22509
+ //#region src/migration/index.d.ts
22510
+ /**
22511
+ * Type Migration Utilities (v1.11.0)
22512
+ *
22513
+ * Tools to help users migrate from v1.x to v2.0.0.
22514
+ */
22515
+ /**
22516
+ * Migration status
22517
+ */
22518
+ type MigrationStatus = 'pending' | 'in_progress' | 'completed' | 'failed' | 'skipped';
22519
+ /**
22520
+ * Migration result
22521
+ */
22522
+ interface MigrationResult<T> {
22523
+ /** Original type */
22524
+ original: T;
22525
+ /** Migrated type */
22526
+ migrated: T;
22527
+ /** Migration status */
22528
+ status: MigrationStatus;
22529
+ /** List of changes made */
22530
+ changes: MigrationChange[];
22531
+ /** List of warnings */
22532
+ warnings: MigrationWarning[];
22533
+ /** List of errors */
22534
+ errors: MigrationError[];
22535
+ }
22536
+ /**
22537
+ * Migration change
22538
+ */
22539
+ interface MigrationChange {
22540
+ /** Path to the changed property */
22541
+ path: string;
22542
+ /** Type of change */
22543
+ type: MigrationChangeType;
22544
+ /** Old value */
22545
+ oldValue?: unknown;
22546
+ /** New value */
22547
+ newValue?: unknown;
22548
+ /** Description of the change */
22549
+ description: string;
22550
+ }
22551
+ /**
22552
+ * Migration change type
22553
+ */
22554
+ type MigrationChangeType = 'rename' | 'restructure' | 'add' | 'remove' | 'modify' | 'deprecate' | 'replace';
22555
+ /**
22556
+ * Migration warning
22557
+ */
22558
+ interface MigrationWarning {
22559
+ /** Warning code */
22560
+ code: string;
22561
+ /** Warning message */
22562
+ message: string;
22563
+ /** Path to the affected property */
22564
+ path?: string;
22565
+ /** Suggested fix */
22566
+ suggestion?: string;
22567
+ }
22568
+ /**
22569
+ * Migration error
22570
+ */
22571
+ interface MigrationError {
22572
+ /** Error code */
22573
+ code: string;
22574
+ /** Error message */
22575
+ message: string;
22576
+ /** Path to the affected property */
22577
+ path?: string;
22578
+ /** Suggested fix */
22579
+ suggestion?: string;
22580
+ }
22581
+ /**
22582
+ * Migration map for tracking type migrations
22583
+ */
22584
+ type MigrationMap<T> = Map<keyof T, MigrationRule<T[keyof T]>>;
22585
+ /**
22586
+ * Migration rule
22587
+ */
22588
+ interface MigrationRule<T> {
22589
+ /** Rule name */
22590
+ name: string;
22591
+ /** Rule description */
22592
+ description?: string;
22593
+ /** Transformation function type */
22594
+ transform: (value: T) => T;
22595
+ /** Condition for applying the rule */
22596
+ condition?: (value: T) => boolean;
22597
+ /** Priority (higher = applied first) */
22598
+ priority?: number;
22599
+ /** Whether this rule is breaking */
22600
+ breaking?: boolean;
22601
+ }
22602
+ /**
22603
+ * Migrate type from v1 to v2
22604
+ * Applies all migration rules to transform the type
22605
+ */
22606
+ type MigrateToV2<T> = T extends infer U ? U extends object ? { [K in keyof U]: MigrateToV2<U[K]> } : U : never;
22607
+ /**
22608
+ * Migrate type from v2 to v1 (backwards compatibility)
22609
+ */
22610
+ type MigrateFromV1<T> = T extends infer U ? U extends object ? { [K in keyof U]: MigrateFromV1<U[K]> } : U : never;
22611
+ /**
22612
+ * Transformation rule
22613
+ */
22614
+ interface TransformRule<T, U = T> {
22615
+ /** Source pattern */
22616
+ from: T;
22617
+ /** Target pattern */
22618
+ to: U;
22619
+ /** Transformation function */
22620
+ transform?: (value: T) => U;
22621
+ }
22622
+ /**
22623
+ * Transform type according to rules
22624
+ */
22625
+ type TransformType<T, _Rules> = T;
22626
+ /**
22627
+ * Rename type properties
22628
+ */
22629
+ type RenameType<T, From extends keyof T, To extends string> = Omit<T, From> & { [K in To]: T[From] };
22630
+ /**
22631
+ * Restructure type according to schema
22632
+ */
22633
+ type RestructureType<T, Schema> = { [K in keyof Schema]: K extends keyof T ? T[K] : Schema[K] };
22634
+ /**
22635
+ * Flatten nested namespace
22636
+ */
22637
+ type FlattenNamespace<T> = T extends object ? { [K in keyof T as K extends string ? T[K] extends object ? `${K}.${keyof T[K] & string}` : K : never]: T[K] } : T;
22638
+ /**
22639
+ * Compatibility mode
22640
+ */
22641
+ type CompatMode = 'v1' | 'v2' | 'both';
22642
+ /**
22643
+ * v1 compatibility wrapper
22644
+ */
22645
+ type CompatV1<T> = T & {
22646
+ __compat_v1__: true;
22647
+ };
22648
+ /**
22649
+ * v2 compatibility wrapper
22650
+ */
22651
+ type CompatV2<T> = T & {
22652
+ __compat_v2__: true;
22653
+ };
22654
+ /**
22655
+ * Backport features to older version
22656
+ */
22657
+ type Backport<T, Version extends string> = T & {
22658
+ __backported_from__: Version;
22659
+ };
22660
+ /**
22661
+ * Forward port features from older version
22662
+ */
22663
+ type ForwardPort<T, Version extends string> = T & {
22664
+ __forwardported_from__: Version;
22665
+ };
22666
+ /**
22667
+ * Version compatibility info
22668
+ */
22669
+ interface VersionCompat {
22670
+ /** Minimum compatible version */
22671
+ minVersion: string;
22672
+ /** Maximum compatible version */
22673
+ maxVersion?: string;
22674
+ /** Deprecated versions */
22675
+ deprecated?: string[];
22676
+ /** Removed in versions */
22677
+ removedIn?: string[];
22678
+ }
22679
+ /**
22680
+ * Validate migration between types
22681
+ */
22682
+ type ValidateMigration<T, U> = T extends U ? (U extends T ? true : false) : false;
22683
+ /**
22684
+ * Migration diff between two types
22685
+ */
22686
+ interface MigrationDiff<T, U> {
22687
+ /** Properties only in T */
22688
+ onlyInSource: Exclude<keyof T, keyof U>;
22689
+ /** Properties only in U */
22690
+ onlyInTarget: Exclude<keyof U, keyof T>;
22691
+ /** Properties in both but with different types */
22692
+ different: { [K in keyof T & keyof U]: T[K] extends U[K] ? (U[K] extends T[K] ? never : K) : K }[keyof T & keyof U];
22693
+ }
22694
+ /**
22695
+ * Breaking changes between types
22696
+ */
22697
+ interface BreakingChanges<T, U> {
22698
+ /** Removed properties */
22699
+ removed: Exclude<keyof T, keyof U>;
22700
+ /** Changed properties (breaking) */
22701
+ changed: { [K in keyof T & keyof U]: T[K] extends U[K] ? never : K }[keyof T & keyof U];
22702
+ /** Required properties added */
22703
+ addedRequired: { [K in keyof U]: K extends keyof T ? never : undefined extends U[K] ? never : K }[keyof U];
22704
+ }
22705
+ /**
22706
+ * Migration report
22707
+ */
22708
+ interface MigrationReport {
22709
+ /** Source type name */
22710
+ sourceType: string;
22711
+ /** Target type name */
22712
+ targetType: string;
22713
+ /** Migration status */
22714
+ status: MigrationStatus;
22715
+ /** Breaking changes detected */
22716
+ breakingChanges: string[];
22717
+ /** Non-breaking changes */
22718
+ nonBreakingChanges: string[];
22719
+ /** Warnings */
22720
+ warnings: string[];
22721
+ /** Migration complexity */
22722
+ complexity: MigrationComplexity;
22723
+ /** Estimated migration time (in minutes) */
22724
+ estimatedTime: number;
22725
+ /** Migration suggestions */
22726
+ suggestions: string[];
22727
+ }
22728
+ /**
22729
+ * Migration complexity level
22730
+ */
22731
+ type MigrationComplexity = 'trivial' | 'simple' | 'moderate' | 'complex' | 'breaking';
22732
+ /**
22733
+ * Codemod definition
22734
+ */
22735
+ interface Codemod<T> {
22736
+ /** Codemod name */
22737
+ name: string;
22738
+ /** Codemod version */
22739
+ version: string;
22740
+ /** Description */
22741
+ description: string;
22742
+ /** Codemod rules */
22743
+ rules: CodemodRule<T>[];
22744
+ /** Dependencies */
22745
+ dependencies?: string[];
22746
+ /** Whether to run in dry-run mode first */
22747
+ dryRun?: boolean;
22748
+ }
22749
+ /**
22750
+ * Codemod execution result
22751
+ */
22752
+ interface CodemodResult<_T> {
22753
+ /** Codemod name */
22754
+ codemod: string;
22755
+ /** Execution status */
22756
+ status: 'success' | 'partial' | 'failed';
22757
+ /** Files processed */
22758
+ filesProcessed: number;
22759
+ /** Files modified */
22760
+ filesModified: number;
22761
+ /** Changes applied */
22762
+ changes: CodemodChange[];
22763
+ /** Errors encountered */
22764
+ errors: CodemodError[];
22765
+ /** Execution time in ms */
22766
+ executionTime: number;
22767
+ }
22768
+ /**
22769
+ * Codemod rule
21114
22770
  */
21115
- type CircuitBreakerState = 'closed' | 'open' | 'half-open';
22771
+ interface CodemodRule<T> {
22772
+ /** Rule name */
22773
+ name: string;
22774
+ /** Pattern to match */
22775
+ pattern: string | RegExp;
22776
+ /** Replacement */
22777
+ replacement: string | ((match: string) => string);
22778
+ /** File glob pattern */
22779
+ files?: string[];
22780
+ /** Condition for applying */
22781
+ condition?: (context: CodemodContext<T>) => boolean;
22782
+ }
21116
22783
  /**
21117
- * Circuit breaker configuration
22784
+ * Codemod execution context
21118
22785
  */
21119
- interface CircuitBreakerConfig {
21120
- failureThreshold: number;
21121
- successThreshold: number;
21122
- timeout: number;
21123
- resetTimeout: number;
21124
- volumeThreshold?: number;
21125
- onStateChange?: (oldState: CircuitBreakerState, newState: CircuitBreakerState) => void;
21126
- onFailure?: (error: Error) => void;
21127
- onSuccess?: () => void;
22786
+ interface CodemodContext<T> {
22787
+ /** Current file path */
22788
+ filePath: string;
22789
+ /** Current content */
22790
+ content: string;
22791
+ /** Match information */
22792
+ match?: RegExpMatchArray;
22793
+ /** Custom data */
22794
+ data?: T;
21128
22795
  }
21129
22796
  /**
21130
- * Circuit breaker stats
22797
+ * Codemod change
21131
22798
  */
21132
- interface CircuitBreakerStats {
21133
- state: CircuitBreakerState;
21134
- failures: number;
21135
- successes: number;
21136
- rejects: number;
21137
- timeouts: number;
21138
- lastFailure?: Date;
21139
- lastSuccess?: Date;
22799
+ interface CodemodChange {
22800
+ /** File path */
22801
+ filePath: string;
22802
+ /** Line number */
22803
+ line: number;
22804
+ /** Column number */
22805
+ column: number;
22806
+ /** Original text */
22807
+ original: string;
22808
+ /** Replacement text */
22809
+ replacement: string;
22810
+ /** Rule that applied the change */
22811
+ rule: string;
21140
22812
  }
21141
22813
  /**
21142
- * Load balancer type
22814
+ * Codemod error
21143
22815
  */
21144
- interface LoadBalancer {
21145
- select: (instances: ServiceInstance[]) => ServiceInstance | undefined;
21146
- getStrategy: () => LoadBalancerStrategy;
21147
- setStrategy: (strategy: LoadBalancerStrategy) => void;
22816
+ interface CodemodError {
22817
+ /** Error code */
22818
+ code: string;
22819
+ /** Error message */
22820
+ message: string;
22821
+ /** File path */
22822
+ filePath?: string;
22823
+ /** Line number */
22824
+ line?: number;
22825
+ /** Stack trace */
22826
+ stack?: string;
21148
22827
  }
21149
22828
  /**
21150
- * Load balancer strategy
22829
+ * Apply codemod to type
21151
22830
  */
21152
- type LoadBalancerStrategy = 'round-robin' | 'least-connections' | 'random' | 'weighted' | 'ip-hash';
22831
+ type ApplyCodemod<T, _R extends CodemodRule<T>> = T;
21153
22832
  /**
21154
- * Service instance type
22833
+ * Migration step
21155
22834
  */
21156
- interface ServiceInstance {
21157
- id: string;
22835
+ interface MigrationStep<T> {
22836
+ /** Step number */
22837
+ step: number;
22838
+ /** Step name */
21158
22839
  name: string;
21159
- host: string;
21160
- port: number;
21161
- version: string;
21162
- status: InstanceStatus;
21163
- metadata?: Record<string, unknown>;
21164
- weight?: number;
21165
- connections?: number;
21166
- lastHeartbeat?: Date;
22840
+ /** Step description */
22841
+ description: string;
22842
+ /** Step action */
22843
+ action: (input: T) => T;
22844
+ /** Whether this step is required */
22845
+ required: boolean;
22846
+ /** Estimated time in minutes */
22847
+ estimatedTime: number;
21167
22848
  }
21168
22849
  /**
21169
- * Instance status
22850
+ * Migration path from one type to another
21170
22851
  */
21171
- type InstanceStatus = 'healthy' | 'unhealthy' | 'draining' | 'starting' | 'stopping';
22852
+ type MigrationPath<T, _U> = MigrationStep<T>[];
21172
22853
  /**
21173
- * Health check type
22854
+ * Migration configuration
21174
22855
  */
21175
- interface HealthCheck {
21176
- name: string;
21177
- check: () => Promise<HealthCheckResult$2>;
21178
- interval?: number;
21179
- timeout?: number;
21180
- critical?: boolean;
22856
+ interface MigrationConfig {
22857
+ /** Source version */
22858
+ fromVersion: string;
22859
+ /** Target version */
22860
+ toVersion: string;
22861
+ /** Whether to continue on errors */
22862
+ continueOnError: boolean;
22863
+ /** Whether to dry run first */
22864
+ dryRun: boolean;
22865
+ /** Custom migration rules */
22866
+ customRules?: MigrationRule<unknown>[];
22867
+ /** Exclude patterns */
22868
+ exclude?: string[];
22869
+ /** Include patterns */
22870
+ include?: string[];
21181
22871
  }
21182
22872
  /**
21183
- * Health status
22873
+ * Migration context
21184
22874
  */
21185
- type HealthStatus = 'healthy' | 'unhealthy' | 'degraded';
22875
+ interface MigrationContext<T> {
22876
+ /** Configuration */
22877
+ config: MigrationConfig;
22878
+ /** Current state */
22879
+ state: MigrationState;
22880
+ /** Progress */
22881
+ progress: MigrationProgress;
22882
+ /** Custom data */
22883
+ data?: T;
22884
+ }
21186
22885
  /**
21187
- * Health report type
22886
+ * Migration state
21188
22887
  */
21189
- interface HealthReport<T = unknown> {
21190
- status: HealthStatus;
21191
- timestamp: Date;
21192
- service: string;
21193
- version: string;
21194
- uptime: number;
21195
- checks: Record<string, HealthCheckResult$2>;
21196
- details?: T;
22888
+ interface MigrationState {
22889
+ /** Current step */
22890
+ currentStep: number;
22891
+ /** Total steps */
22892
+ totalSteps: number;
22893
+ /** Started at */
22894
+ startedAt?: Date;
22895
+ /** Completed at */
22896
+ completedAt?: Date;
22897
+ /** Status */
22898
+ status: MigrationStatus;
21197
22899
  }
21198
22900
  /**
21199
- * Health check result
22901
+ * Migration progress
21200
22902
  */
21201
- interface HealthCheckResult$2 {
21202
- status: HealthStatus;
21203
- message?: string;
22903
+ interface MigrationProgress {
22904
+ /** Percentage complete (0-100) */
22905
+ percentage: number;
22906
+ /** Items processed */
22907
+ processed: number;
22908
+ /** Total items */
22909
+ total: number;
22910
+ /** Items remaining */
22911
+ remaining: number;
22912
+ /** Time elapsed in ms */
22913
+ elapsed: number;
22914
+ /** Estimated time remaining in ms */
22915
+ estimatedRemaining: number;
22916
+ }
22917
+ /**
22918
+ * Migration history record
22919
+ */
22920
+ interface MigrationHistory {
22921
+ /** Migration ID */
22922
+ id: string;
22923
+ /** Migration name */
22924
+ name: string;
22925
+ /** Migration version */
22926
+ version: string;
22927
+ /** Timestamp */
21204
22928
  timestamp: Date;
21205
- duration?: number;
21206
- details?: unknown;
22929
+ /** Status */
22930
+ status: MigrationStatus;
22931
+ /** Changes made */
22932
+ changes: number;
22933
+ /** Errors encountered */
22934
+ errors: number;
22935
+ /** Duration in ms */
22936
+ duration: number;
21207
22937
  }
21208
22938
  /**
21209
- * Environment type
22939
+ * Create migration map helper
21210
22940
  */
21211
- type Environment = 'development' | 'staging' | 'production' | 'test';
22941
+ type CreateMigrationMap<T> = { [K in keyof T]: MigrationRule<T[K]> };
21212
22942
  /**
21213
- * HTTP method
22943
+ * Migration pipeline
21214
22944
  */
21215
- type HTTPMethod$1 = 'GET' | 'POST' | 'PUT' | 'DELETE' | 'PATCH' | 'HEAD' | 'OPTIONS';
22945
+ type MigrationPipeline<T> = MigrationStep<T>[];
22946
+ /**
22947
+ * Compose multiple migrations
22948
+ */
22949
+ type ComposeMigrations<T, _U, _V> = (input: T, migration1: MigrationStep<T>[], migration2: MigrationStep<_U>[]) => _V;
21216
22950
  //#endregion
21217
22951
  //#region src/monitoring/index.d.ts
21218
22952
  /**
@@ -25038,6 +26772,404 @@ type LazyChain<T, F extends (value: T) => unknown> = () => ReturnType<F>;
25038
26772
  */
25039
26773
  type LazyMap<T extends readonly unknown[], F extends (value: T[number]) => unknown> = { [K in keyof T]: () => ReturnType<F> };
25040
26774
  //#endregion
26775
+ //#region src/perf/monitor.d.ts
26776
+ /**
26777
+ * Performance Monitoring & Advanced Optimization (v1.11.0)
26778
+ *
26779
+ * Advanced performance optimization utilities for TypeScript types.
26780
+ */
26781
+ /**
26782
+ * Fast type - optimized for compilation speed
26783
+ */
26784
+ type Fast<T> = T extends infer U ? { [K in keyof U]: U[K] } : never;
26785
+ /**
26786
+ * Optimized type - balanced optimization
26787
+ */
26788
+ type Optimized<T> = T;
26789
+ /**
26790
+ * Cached computation result
26791
+ */
26792
+ type CachedCompute<T> = T & {
26793
+ __cached__: true;
26794
+ __cache_key__: string;
26795
+ };
26796
+ /**
26797
+ * Lazy computation type
26798
+ */
26799
+ type LazyCompute<T> = () => T;
26800
+ /**
26801
+ * Reduce type complexity
26802
+ */
26803
+ type ReduceComplexity<T> = T extends infer U ? U extends object ? { [K in keyof U]: ReduceComplexity<U[K]> } : U : never;
26804
+ /**
26805
+ * Simplify for compiler
26806
+ */
26807
+ type SimplifyForCompiler<T> = T extends infer U ? { [K in keyof U]: U[K] } : never;
26808
+ /**
26809
+ * Optimize type inference
26810
+ */
26811
+ type OptimizeInference<T> = T extends infer U ? U : never;
26812
+ /**
26813
+ * Reduce recursion depth
26814
+ */
26815
+ type ReduceRecursion<T, _Depth extends number = 10> = T;
26816
+ /**
26817
+ * Recursion depth limit
26818
+ */
26819
+ type RecursionLimit<T, Depth extends number, Current extends number = 0> = Current extends Depth ? T : T extends object ? { [K in keyof T]: RecursionLimit<T[K], Depth, Current> } : T;
26820
+ /**
26821
+ * Tail-recursive type optimization
26822
+ */
26823
+ type TailRecursive<T> = T;
26824
+ /**
26825
+ * Lightweight type representation
26826
+ */
26827
+ type LightWeight<T> = T extends infer U ? Pick<U, keyof U> : never;
26828
+ /**
26829
+ * Minimal type representation
26830
+ */
26831
+ type Minimal<T> = T extends infer U ? { [K in keyof U as U[K] extends undefined ? never : K]: U[K] } : never;
26832
+ /**
26833
+ * Compact representation
26834
+ */
26835
+ type CompactRepresentation<T> = T;
26836
+ /**
26837
+ * Shared structure optimization
26838
+ */
26839
+ type SharedStructure<T> = T & {
26840
+ __shared__: true;
26841
+ };
26842
+ /**
26843
+ * Pooled type
26844
+ */
26845
+ type Pooled<T> = T & {
26846
+ __pooled__: true;
26847
+ __pool_id__: string;
26848
+ };
26849
+ /**
26850
+ * Interned string type
26851
+ */
26852
+ type InternedString = string & {
26853
+ __interned__: true;
26854
+ };
26855
+ /**
26856
+ * Precompute type result
26857
+ */
26858
+ type Precompute<T> = T;
26859
+ /**
26860
+ * Precomputed value
26861
+ */
26862
+ type PrecomputedValue<T, V> = T & {
26863
+ __precomputed__: V;
26864
+ __computed_at__: number;
26865
+ };
26866
+ /**
26867
+ * Deferred evaluation
26868
+ */
26869
+ type DeferredEvaluation<T> = () => T;
26870
+ /**
26871
+ * Incremental type
26872
+ */
26873
+ type IncrementalType<T> = T & {
26874
+ __incremental__: true;
26875
+ __base__: Partial<T>;
26876
+ __delta__: Partial<T>;
26877
+ };
26878
+ /**
26879
+ * Build hint for type
26880
+ */
26881
+ type BuildHint<T> = T & {
26882
+ __build_hint__: BuildHintType;
26883
+ };
26884
+ /**
26885
+ * Build hint types
26886
+ */
26887
+ type BuildHintType = 'inline' | 'cache' | 'defer' | 'optimize' | 'lazy' | 'eager';
26888
+ /**
26889
+ * Skip type checking hint
26890
+ */
26891
+ type SkipCheck<T> = T & {
26892
+ __skip_check__: true;
26893
+ };
26894
+ /**
26895
+ * Type complexity measurement (v1.11.0)
26896
+ */
26897
+ interface TypeComplexityMetrics<T> {
26898
+ /** Type being measured */
26899
+ type: T;
26900
+ /** Number of properties */
26901
+ propertyCount: number;
26902
+ /** Maximum nesting depth */
26903
+ nestingDepth: number;
26904
+ /** Number of union branches */
26905
+ unionBranches: number;
26906
+ /** Number of generic parameters */
26907
+ genericParams: number;
26908
+ /** Estimated complexity score */
26909
+ complexityScore: number;
26910
+ }
26911
+ /**
26912
+ * Compilation time estimate
26913
+ */
26914
+ interface CompilationTime<T> {
26915
+ /** Type being measured */
26916
+ type: T;
26917
+ /** Estimated compilation time in ms */
26918
+ estimatedMs: number;
26919
+ /** Factors affecting compilation */
26920
+ factors: CompilationFactor[];
26921
+ }
26922
+ /**
26923
+ * Compilation factor
26924
+ */
26925
+ interface CompilationFactor {
26926
+ /** Factor name */
26927
+ name: string;
26928
+ /** Impact weight */
26929
+ weight: number;
26930
+ /** Description */
26931
+ description: string;
26932
+ }
26933
+ /**
26934
+ * Type size estimation
26935
+ */
26936
+ interface TypeSize<T> {
26937
+ /** Type being measured */
26938
+ type: T;
26939
+ /** Estimated type string length */
26940
+ typeStringLength: number;
26941
+ /** Number of unique types referenced */
26942
+ referencedTypes: number;
26943
+ /** Estimated memory usage */
26944
+ estimatedMemory: number;
26945
+ }
26946
+ /**
26947
+ * Performance hint info
26948
+ */
26949
+ interface PerformanceHintInfo {
26950
+ /** Suggested optimization */
26951
+ optimization: PerformanceOptimization;
26952
+ /** Reason for the hint */
26953
+ reason: string;
26954
+ /** Expected improvement */
26955
+ expectedImprovement: string;
26956
+ }
26957
+ /**
26958
+ * Performance optimization types
26959
+ */
26960
+ type PerformanceOptimization = 'reduce_depth' | 'split_union' | 'simplify_conditional' | 'cache_result' | 'defer_evaluation' | 'reduce_generic' | 'inline_type' | 'remove_unused';
26961
+ /**
26962
+ * Type analyzer result
26963
+ */
26964
+ interface TypeAnalysis {
26965
+ /** Type name */
26966
+ typeName: string;
26967
+ /** Complexity analysis */
26968
+ complexity: number;
26969
+ /** Performance issues detected */
26970
+ issues: PerformanceIssue[];
26971
+ /** Optimization suggestions */
26972
+ suggestions: PerformanceOptimizationSuggestion[];
26973
+ /** Comparison to baseline */
26974
+ baselineComparison?: BaselineComparison;
26975
+ }
26976
+ /**
26977
+ * Performance issue
26978
+ */
26979
+ interface PerformanceIssue {
26980
+ /** Issue code */
26981
+ code: string;
26982
+ /** Issue severity */
26983
+ severity: 'low' | 'medium' | 'high' | 'critical';
26984
+ /** Issue message */
26985
+ message: string;
26986
+ /** Location of issue */
26987
+ location?: string;
26988
+ /** Suggested fix */
26989
+ fix?: string;
26990
+ }
26991
+ /**
26992
+ * Performance suggestion (v1.11.0)
26993
+ */
26994
+ interface PerformanceOptimizationSuggestion {
26995
+ /** Suggestion ID */
26996
+ id: string;
26997
+ /** Suggestion priority */
26998
+ priority: number;
26999
+ /** Suggestion description */
27000
+ description: string;
27001
+ /** Expected improvement */
27002
+ expectedImprovement: string;
27003
+ /** Implementation complexity */
27004
+ implementationComplexity: 'trivial' | 'simple' | 'moderate' | 'complex';
27005
+ }
27006
+ /**
27007
+ * Baseline comparison
27008
+ */
27009
+ interface BaselineComparison {
27010
+ /** Baseline value */
27011
+ baseline: number;
27012
+ /** Current value */
27013
+ current: number;
27014
+ /** Difference */
27015
+ difference: number;
27016
+ /** Percentage change */
27017
+ percentageChange: number;
27018
+ /** Is improvement */
27019
+ isImprovement: boolean;
27020
+ }
27021
+ /**
27022
+ * Type profiler configuration
27023
+ */
27024
+ interface TypeProfilerConfig {
27025
+ /** Enable profiling */
27026
+ enabled: boolean;
27027
+ /** Sample rate (0-1) */
27028
+ sampleRate: number;
27029
+ /** Profile threshold in ms */
27030
+ threshold: number;
27031
+ /** Types to profile (glob patterns) */
27032
+ include?: string[];
27033
+ /** Types to exclude (glob patterns) */
27034
+ exclude?: string[];
27035
+ /** Output format */
27036
+ outputFormat: 'json' | 'table' | 'chart';
27037
+ }
27038
+ /**
27039
+ * Type profiler result
27040
+ */
27041
+ interface TypeProfilerResult {
27042
+ /** Profiling duration */
27043
+ duration: number;
27044
+ /** Types profiled */
27045
+ typesProfiled: number;
27046
+ /** Total compilation time */
27047
+ totalCompileTime: number;
27048
+ /** Slow types */
27049
+ slowTypes: TypeProfileEntry[];
27050
+ /** Memory usage */
27051
+ memoryUsage: number;
27052
+ /** Hot paths */
27053
+ hotPaths: HotPath[];
27054
+ }
27055
+ /**
27056
+ * Type profile entry
27057
+ */
27058
+ interface TypeProfileEntry {
27059
+ /** Type name */
27060
+ name: string;
27061
+ /** Compilation time in ms */
27062
+ compileTime: number;
27063
+ /** Number of instantiations */
27064
+ instantiations: number;
27065
+ /** Average time per instantiation */
27066
+ averageTime: number;
27067
+ /** Location */
27068
+ location?: string;
27069
+ }
27070
+ /**
27071
+ * Hot path
27072
+ */
27073
+ interface HotPath {
27074
+ /** Path name */
27075
+ name: string;
27076
+ /** Time spent in path */
27077
+ timeMs: number;
27078
+ /** Percentage of total time */
27079
+ percentage: number;
27080
+ /** Call count */
27081
+ callCount: number;
27082
+ }
27083
+ /**
27084
+ * Benchmark configuration
27085
+ */
27086
+ interface TypeBenchmarkConfig {
27087
+ /** Number of iterations */
27088
+ iterations: number;
27089
+ /** Warmup iterations */
27090
+ warmup: number;
27091
+ /** Timeout in ms */
27092
+ timeout: number;
27093
+ /** Compare against baseline */
27094
+ baseline?: string;
27095
+ }
27096
+ /**
27097
+ * Benchmark result
27098
+ */
27099
+ interface TypeBenchmarkResult {
27100
+ /** Benchmark name */
27101
+ name: string;
27102
+ /** Average time in ms */
27103
+ averageTime: number;
27104
+ /** Minimum time */
27105
+ minTime: number;
27106
+ /** Maximum time */
27107
+ maxTime: number;
27108
+ /** Standard deviation */
27109
+ stdDev: number;
27110
+ /** Operations per second */
27111
+ opsPerSecond: number;
27112
+ /** Comparison to baseline */
27113
+ baselineComparison?: BaselineComparison;
27114
+ /** Samples */
27115
+ samples: number[];
27116
+ }
27117
+ /**
27118
+ * Optimization strategy
27119
+ */
27120
+ type OptimizationStrategy = 'aggressive' | 'balanced' | 'conservative' | 'debug';
27121
+ /**
27122
+ * Optimization level
27123
+ */
27124
+ type OptimizationLevel$1 = 0 | 1 | 2 | 3;
27125
+ /**
27126
+ * Optimization configuration
27127
+ */
27128
+ interface OptimizationConfig {
27129
+ /** Strategy to use */
27130
+ strategy: OptimizationStrategy;
27131
+ /** Optimization level */
27132
+ level: OptimizationLevel$1;
27133
+ /** Enable specific optimizations */
27134
+ enabledOptimizations: OptimizationType[];
27135
+ /** Disable specific optimizations */
27136
+ disabledOptimizations: OptimizationType[];
27137
+ /** Maximum recursion depth */
27138
+ maxRecursionDepth: number;
27139
+ /** Maximum union branches */
27140
+ maxUnionBranches: number;
27141
+ }
27142
+ /**
27143
+ * Optimization types
27144
+ */
27145
+ type OptimizationType = 'constant_folding' | 'dead_code_elimination' | 'inline_expansion' | 'loop_unrolling' | 'common_subexpression_elimination' | 'tail_call_optimization' | 'type_narrowing' | 'branch_prediction';
27146
+ /**
27147
+ * Applied optimization
27148
+ */
27149
+ interface AppliedOptimization {
27150
+ /** Optimization type */
27151
+ type: OptimizationType;
27152
+ /** Location */
27153
+ location: string;
27154
+ /** Before */
27155
+ before?: string;
27156
+ /** After */
27157
+ after?: string;
27158
+ /** Improvement */
27159
+ improvement: number;
27160
+ }
27161
+ /**
27162
+ * Optimization improvement metrics
27163
+ */
27164
+ interface OptimizationImprovement {
27165
+ /** Compile time reduction percentage */
27166
+ compileTimeReduction: number;
27167
+ /** Type size reduction percentage */
27168
+ typeSizeReduction: number;
27169
+ /** Complexity reduction percentage */
27170
+ complexityReduction: number;
27171
+ }
27172
+ //#endregion
25041
27173
  //#region src/perf/optimize.d.ts
25042
27174
  /**
25043
27175
  * Type optimization utilities
@@ -31926,4 +34058,4 @@ interface WorkflowExecutor {
31926
34058
  */
31927
34059
  type ErrorHandlingStrategy = 'fail-fast' | 'compensate' | 'ignore' | 'manual';
31928
34060
  //#endregion
31929
- export { type ABAC, type ABACConfig, ABIError, ABIEvent, ABIFunction, ABIParameter, ABIType, type ACL, type ACLEntry, ADSREnvelope, type APIAuth, type APIBody, type APICredentials, 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, type AddedProperties, Address, type Adler32, 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, type Apply, 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, type BackpressureConfig, type BackpressureState, type BackpressureStrategy, BannerProps, type Base64, type Base64URL, type BaseEvent, type BaseKind, BaseTransaction, 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, type Breakpoint, type BreakpointAction, type BreakpointCondition, type BreakpointLocation, type BreakpointType, type BubbleSort, type BucketSort, type BufferedChannel, type BuildConfig, BuildError, 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, 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, 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, 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, type CommonExtension, type CommonGlob, type CommonMimeType, type CommonSubexpression, Compact, type Comparator, CompareFunction, type Compatibility, CompatibilityReport, type Compatible, CompatibleIntersection, CompatibleKeys, CompatibleMerge, CompatibleWith, 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, 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, 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, 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, type DefineMetadata, 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, type Depth, DepthStencilAttachment, DepthStencilState, Dequeue, type DerivedKey, type Describe, type DetectionResult, type Diagnostic, type DiagnosticAction, DiagnosticItem, type DiagnosticLevel, type DiagnosticRange, type DiagnosticReporter, 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, 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, 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, type ErrorChain, type ErrorCode, type ErrorFactory, type ErrorHandler, type ErrorHandlerResult, type ErrorHandlingStrategy, type ErrorInstance, type ErrorLog, type ErrorMessage, ErrorMessageProps, type ErrorSeverity, type ErrorStack, 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, 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, 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, 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, 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, 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, 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, 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, type ImportDeclaration, type ImportSpecifier, type Impure, type InRange, type InRangeExclusive, type InRangeInclusive, InboundPort, Inc, IncompatibleKeys, 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, InterpolateFunction, type InterpolatedMessage, type InterpolationOptions, type Intersection, type Intersperse, type IntervalObservable, 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, LazyConditional, LazyKey, LazyMap, LazyParameters, LazyReturnType, type LeaderElection, LeafPaths, type LeakedObject, type Lease, type Left$1 as Left, type LeftShift, 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, 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, type MigrationActionDown, type MigrationActionUp, type MigrationHistoryEntry, type MigrationRecord, type MimeType, type MimeTypeFromExtension, type Min, type MinElement, MinKey, type MinLength, type MinValue, type MinificationOptions, type MinifiedType, type Minify, type MinifyType, type Minutes, type MissRate, 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, type OptimizationContext, type OptimizationLevel, type OptimizationOptions, type OptimizationPass, type OptimizationPipeline, type OptimizationResult, type OptimizationRule, type OptimizationStats, type Optimize, type OptimizeDeep, type OptimizeFor, 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, type PerformanceMeasure, type PerformanceMetric, PerformanceOpportunity, 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, Polygon, type Polymorphic, PoolPair, type PoolingLayer, Pop, type Port, Pose, type Position, type Position2D, type Position3D, type PositionTick, PostingListEntry, type Power, 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, 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, type RecoveryOptions, type RecoveryResult, type RecoveryStrategy, Rect, Rectangle, type RecurrentLayer, type Recurse, type RecurseUntil, type RecurseWhile, Reduce, ReduceIntersection, type ReduceOperator, 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, 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, type RemovedProperties, RenameKeys, RenderPassDescriptor, RenderPipelineDescriptor, RenderTargetInfo, type Renderable, Repeat, Replace, ReplaceAll, type ReplaceValue, ReplayOptions, ReplayResult, type ReplaySubject, type Replica, type ReplicaSet, type ReplicaSetConfig, type ReplicaStatus, type Replication, type ReplicationStrategy, type ReportConfig, type ReportFormat, 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, 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, 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, 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, type SimplifyIntersection, type SimplifyUnion, type Sin, SingleQubitGate, type Singleton, Size2D, Size3D, SizeMetrics, Skeleton, 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, type SuiteResult, type Sum, type SumElements, type Summary, 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, 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, type TransformScheduler, type TransformStreamLike, 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, type TypeApp, type TypeAssertionCheck, type TypeAtPath, type TypeBuilder, TypeCache, type TypeCategory, type TypeCheckError, type TypeComparison, TypeComplexity, 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, type TypeMismatchError, type TypePath, type TypeReferenceGraph, type TypeScriptOptions, type TypeSet, type TypeSignature, TypeSome, type TypeStructure, type TypeTest, TypeTestResult, TypeTestSuite, TypeToGraphQL, type TypeTree, type TypeVar, 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, 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, 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, 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, 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 };
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 };