@tsonic/efcore-sqlserver 10.0.1 → 10.0.2

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.
Files changed (142) hide show
  1. package/Azure/bindings.json +686 -17
  2. package/Azure/internal/index.d.ts +37 -7
  3. package/Azure.Core/bindings.json +1048 -19
  4. package/Azure.Core/internal/index.d.ts +40 -9
  5. package/Azure.Core.Cryptography/bindings.json +5 -0
  6. package/Azure.Core.Diagnostics/bindings.json +56 -0
  7. package/Azure.Core.Diagnostics/internal/index.d.ts +9 -3
  8. package/Azure.Core.Diagnostics.d.ts +2 -2
  9. package/Azure.Core.Extensions/bindings.json +17 -0
  10. package/Azure.Core.GeoJson/bindings.json +362 -0
  11. package/Azure.Core.Pipeline/bindings.json +450 -3
  12. package/Azure.Core.Pipeline/internal/index.d.ts +27 -4
  13. package/Azure.Core.Pipeline.d.ts +2 -2
  14. package/Azure.Core.Serialization/bindings.json +89 -1
  15. package/Azure.Core.Serialization/internal/index.d.ts +1 -0
  16. package/Azure.Core.d.ts +1 -1
  17. package/Azure.Identity/bindings.json +1039 -58
  18. package/Azure.Identity/internal/index.d.ts +51 -30
  19. package/Azure.Identity.d.ts +1 -1
  20. package/Azure.Messaging/bindings.json +69 -0
  21. package/Azure.Messaging/internal/index.d.ts +6 -1
  22. package/Azure.d.ts +1 -1
  23. package/Microsoft.Data/bindings.json +16 -0
  24. package/Microsoft.Data.Sql/bindings.json +16 -0
  25. package/Microsoft.Data.SqlClient/bindings.json +2482 -38
  26. package/Microsoft.Data.SqlClient/internal/index.d.ts +114 -22
  27. package/Microsoft.Data.SqlClient.DataClassification/bindings.json +66 -0
  28. package/Microsoft.Data.SqlClient.Diagnostics/bindings.json +639 -0
  29. package/Microsoft.Data.SqlClient.Server/bindings.json +163 -0
  30. package/Microsoft.Data.SqlTypes/bindings.json +73 -0
  31. package/Microsoft.EntityFrameworkCore/bindings.json +700 -2
  32. package/Microsoft.EntityFrameworkCore/internal/index.d.ts +9 -2
  33. package/Microsoft.EntityFrameworkCore.Diagnostics/bindings.json +35 -0
  34. package/Microsoft.EntityFrameworkCore.Infrastructure/bindings.json +107 -1
  35. package/Microsoft.EntityFrameworkCore.Infrastructure/internal/index.d.ts +1 -0
  36. package/Microsoft.EntityFrameworkCore.Metadata/bindings.json +27 -0
  37. package/Microsoft.EntityFrameworkCore.Metadata.Builders/bindings.json +78 -0
  38. package/Microsoft.EntityFrameworkCore.Metadata.Conventions/bindings.json +853 -10
  39. package/Microsoft.EntityFrameworkCore.Metadata.Conventions/internal/index.d.ts +85 -13
  40. package/Microsoft.EntityFrameworkCore.Metadata.Conventions.d.ts +3 -2
  41. package/Microsoft.EntityFrameworkCore.Metadata.Internal/bindings.json +10 -0
  42. package/Microsoft.EntityFrameworkCore.Migrations/bindings.json +917 -0
  43. package/Microsoft.EntityFrameworkCore.Migrations/internal/index.d.ts +56 -6
  44. package/Microsoft.EntityFrameworkCore.Migrations.Operations/bindings.json +41 -0
  45. package/Microsoft.EntityFrameworkCore.Migrations.d.ts +6 -5
  46. package/Microsoft.EntityFrameworkCore.SqlServer.Design.Internal/bindings.json +122 -0
  47. package/Microsoft.EntityFrameworkCore.SqlServer.Design.Internal/internal/index.d.ts +10 -2
  48. package/Microsoft.EntityFrameworkCore.SqlServer.Design.Internal.d.ts +1 -1
  49. package/Microsoft.EntityFrameworkCore.SqlServer.Diagnostics.Internal/bindings.json +28 -0
  50. package/Microsoft.EntityFrameworkCore.SqlServer.Extensions.Internal/bindings.json +27 -0
  51. package/Microsoft.EntityFrameworkCore.SqlServer.Infrastructure.Internal/bindings.json +421 -8
  52. package/Microsoft.EntityFrameworkCore.SqlServer.Infrastructure.Internal/internal/index.d.ts +34 -10
  53. package/Microsoft.EntityFrameworkCore.SqlServer.Infrastructure.Internal.d.ts +3 -2
  54. package/Microsoft.EntityFrameworkCore.SqlServer.Internal/bindings.json +87 -0
  55. package/Microsoft.EntityFrameworkCore.SqlServer.Metadata.Internal/bindings.json +56 -0
  56. package/Microsoft.EntityFrameworkCore.SqlServer.Migrations.Internal/bindings.json +95 -0
  57. package/Microsoft.EntityFrameworkCore.SqlServer.Migrations.Internal/internal/index.d.ts +8 -2
  58. package/Microsoft.EntityFrameworkCore.SqlServer.Migrations.Internal.d.ts +1 -1
  59. package/Microsoft.EntityFrameworkCore.SqlServer.Query.Internal/bindings.json +2415 -31
  60. package/Microsoft.EntityFrameworkCore.SqlServer.Query.Internal/internal/index.d.ts +209 -30
  61. package/Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlExpressions/bindings.json +39 -0
  62. package/Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlExpressions/internal/index.d.ts +8 -3
  63. package/Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlExpressions.d.ts +2 -2
  64. package/Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.d.ts +5 -5
  65. package/Microsoft.EntityFrameworkCore.SqlServer.Scaffolding.Internal/bindings.json +32 -0
  66. package/Microsoft.EntityFrameworkCore.SqlServer.Storage.Internal/bindings.json +1816 -67
  67. package/Microsoft.EntityFrameworkCore.SqlServer.Storage.Internal/internal/index.d.ts +197 -27
  68. package/Microsoft.EntityFrameworkCore.SqlServer.Storage.Internal.d.ts +2 -2
  69. package/Microsoft.EntityFrameworkCore.SqlServer.Update.Internal/bindings.json +397 -4
  70. package/Microsoft.EntityFrameworkCore.SqlServer.Update.Internal/internal/index.d.ts +38 -7
  71. package/Microsoft.EntityFrameworkCore.SqlServer.Update.Internal.d.ts +3 -3
  72. package/Microsoft.EntityFrameworkCore.SqlServer.ValueGeneration.Internal/bindings.json +138 -1
  73. package/Microsoft.EntityFrameworkCore.SqlServer.ValueGeneration.Internal/internal/index.d.ts +16 -3
  74. package/Microsoft.EntityFrameworkCore.SqlServer.ValueGeneration.Internal.d.ts +3 -1
  75. package/Microsoft.EntityFrameworkCore.d.ts +1 -1
  76. package/Microsoft.Extensions.DependencyInjection/bindings.json +10 -0
  77. package/Microsoft.Identity.Client/bindings.json +1941 -39
  78. package/Microsoft.Identity.Client/internal/index.d.ts +94 -28
  79. package/Microsoft.Identity.Client.Advanced/bindings.json +5 -0
  80. package/Microsoft.Identity.Client.AppConfig/bindings.json +21 -0
  81. package/Microsoft.Identity.Client.AuthScheme/bindings.json +6 -0
  82. package/Microsoft.Identity.Client.AuthScheme.PoP/bindings.json +3 -0
  83. package/Microsoft.Identity.Client.Cache/bindings.json +34 -0
  84. package/Microsoft.Identity.Client.Extensibility/bindings.json +80 -10
  85. package/Microsoft.Identity.Client.Extensibility/internal/index.d.ts +6 -5
  86. package/Microsoft.Identity.Client.Extensions.Msal/bindings.json +117 -0
  87. package/Microsoft.Identity.Client.Extensions.Msal/internal/index.d.ts +2 -1
  88. package/Microsoft.Identity.Client.Extensions.Msal.d.ts +1 -1
  89. package/Microsoft.Identity.Client.Kerberos/bindings.json +77 -0
  90. package/Microsoft.Identity.Client.ManagedIdentity/bindings.json +31 -0
  91. package/Microsoft.Identity.Client.Platforms.Features.DesktopOs.Kerberos/bindings.json +18 -1
  92. package/Microsoft.Identity.Client.Platforms.Features.DesktopOs.Kerberos/internal/index.d.ts +1 -0
  93. package/Microsoft.Identity.Client.RP/bindings.json +10 -0
  94. package/Microsoft.Identity.Client.Region/bindings.json +29 -0
  95. package/Microsoft.Identity.Client.SSHCertificates/bindings.json +6 -0
  96. package/Microsoft.Identity.Client.TelemetryCore.TelemetryClient/bindings.json +6 -0
  97. package/Microsoft.Identity.Client.Utils/bindings.json +10 -0
  98. package/Microsoft.Identity.Client.Utils.Windows/bindings.json +6 -0
  99. package/Microsoft.IdentityModel.Abstractions/bindings.json +135 -1
  100. package/Microsoft.IdentityModel.Abstractions/internal/index.d.ts +1 -0
  101. package/Microsoft.IdentityModel.JsonWebTokens/bindings.json +252 -6
  102. package/Microsoft.IdentityModel.JsonWebTokens/internal/index.d.ts +12 -5
  103. package/Microsoft.IdentityModel.JsonWebTokens.d.ts +1 -1
  104. package/Microsoft.IdentityModel.Logging/bindings.json +122 -2
  105. package/Microsoft.IdentityModel.Logging/internal/index.d.ts +8 -3
  106. package/Microsoft.IdentityModel.Logging.d.ts +1 -1
  107. package/Microsoft.IdentityModel.Protocols/bindings.json +155 -1
  108. package/Microsoft.IdentityModel.Protocols/internal/index.d.ts +1 -0
  109. package/Microsoft.IdentityModel.Protocols.Configuration/bindings.json +30 -0
  110. package/Microsoft.IdentityModel.Protocols.Configuration/internal/index.d.ts +2 -1
  111. package/Microsoft.IdentityModel.Protocols.Configuration.d.ts +1 -1
  112. package/Microsoft.IdentityModel.Protocols.OpenIdConnect/bindings.json +645 -0
  113. package/Microsoft.IdentityModel.Protocols.OpenIdConnect/internal/index.d.ts +17 -2
  114. package/Microsoft.IdentityModel.Protocols.OpenIdConnect.Configuration/bindings.json +17 -0
  115. package/Microsoft.IdentityModel.Protocols.OpenIdConnect.d.ts +1 -1
  116. package/Microsoft.IdentityModel.Tokens/bindings.json +2486 -77
  117. package/Microsoft.IdentityModel.Tokens/internal/index.d.ts +135 -35
  118. package/Microsoft.IdentityModel.Tokens.Configuration/bindings.json +10 -0
  119. package/Microsoft.IdentityModel.Tokens.d.ts +1 -1
  120. package/Microsoft.SqlServer.Server/bindings.json +144 -0
  121. package/System/bindings.json +63 -0
  122. package/System.ClientModel/bindings.json +256 -11
  123. package/System.ClientModel/internal/index.d.ts +22 -6
  124. package/System.ClientModel.Primitives/bindings.json +1673 -120
  125. package/System.ClientModel.Primitives/internal/index.d.ts +111 -17
  126. package/System.ClientModel.Primitives.d.ts +2 -2
  127. package/System.Configuration/bindings.json +5382 -321
  128. package/System.Configuration/internal/index.d.ts +323 -51
  129. package/System.Configuration.Internal/bindings.json +193 -1
  130. package/System.Configuration.Provider/bindings.json +69 -1
  131. package/System.Configuration.Provider/internal/index.d.ts +3 -1
  132. package/System.Configuration.Provider.d.ts +1 -1
  133. package/System.Configuration.d.ts +3 -3
  134. package/System.Diagnostics/bindings.json +5 -0
  135. package/System.Drawing.Configuration/bindings.json +25 -0
  136. package/System.Drawing.Configuration/internal/index.d.ts +11 -3
  137. package/System.Drawing.Configuration.d.ts +5 -2
  138. package/System.IdentityModel.Tokens.Jwt/bindings.json +646 -36
  139. package/System.IdentityModel.Tokens.Jwt/internal/index.d.ts +33 -19
  140. package/System.Security.Cryptography/bindings.json +31 -0
  141. package/System.Text.Json.Serialization/bindings.json +10 -0
  142. package/package.json +1 -1
@@ -20,7 +20,7 @@ import * as System_Runtime_Serialization_Internal from "@tsonic/dotnet/System.Ru
20
20
  import type { ISerializable, SerializationInfo, StreamingContext } from "@tsonic/dotnet/System.Runtime.Serialization.js";
21
21
  import * as System_Security_Claims_Internal from "@tsonic/dotnet/System.Security.Claims.js";
22
22
  import type { Claim, ClaimsIdentity, ClaimsPrincipal } from "@tsonic/dotnet/System.Security.Claims.js";
23
- import type { AsymmetricAlgorithm, ECDsa, HashAlgorithm, HashAlgorithmName, KeyedHashAlgorithm, RSA, RSAParameters } from "@tsonic/dotnet/System.Security.Cryptography.js";
23
+ import type { AsymmetricAlgorithm, ECDsa, HashAlgorithm, HashAlgorithmName, KeyedHashAlgorithm, RSA, RSAParameters, SymmetricAlgorithm } from "@tsonic/dotnet/System.Security.Cryptography.js";
24
24
  import type { X509Certificate2 } from "@tsonic/dotnet/System.Security.Cryptography.X509Certificates.js";
25
25
  import * as System_Security_Principal_Internal from "@tsonic/dotnet/System.Security.Principal.js";
26
26
  import type { IIdentity } from "@tsonic/dotnet/System.Security.Principal.js";
@@ -139,9 +139,16 @@ export const AsymmetricSecurityKey: {
139
139
 
140
140
  export type AsymmetricSecurityKey = AsymmetricSecurityKey$instance;
141
141
 
142
- export interface AsymmetricSignatureProvider$instance extends SignatureProvider {
142
+ export abstract class AsymmetricSignatureProvider$protected {
143
+ protected Dispose2(disposing: boolean): void;
144
+ protected GetHashAlgorithmName(algorithm: string): HashAlgorithmName;
145
+ }
146
+
147
+
148
+ export interface AsymmetricSignatureProvider$instance extends AsymmetricSignatureProvider$protected, SignatureProvider {
143
149
  readonly MinimumAsymmetricKeySizeInBitsForSigningMap: IReadOnlyDictionary<System_Internal.String, System_Internal.Int32>;
144
150
  readonly MinimumAsymmetricKeySizeInBitsForVerifyingMap: IReadOnlyDictionary<System_Internal.String, System_Internal.Int32>;
151
+ Dispose(): void;
145
152
  Sign(input: ReadOnlySpan<System_Internal.Byte>, signature: Span<System_Internal.Byte>, bytesWritten: int): boolean;
146
153
  Sign(input: byte[]): byte[];
147
154
  Sign(input: byte[], offset: int, count: int): byte[];
@@ -162,7 +169,15 @@ export const AsymmetricSignatureProvider: {
162
169
 
163
170
  export type AsymmetricSignatureProvider = AsymmetricSignatureProvider$instance;
164
171
 
165
- export interface AuthenticatedEncryptionProvider$instance {
172
+ export abstract class AuthenticatedEncryptionProvider$protected {
173
+ protected Dispose(disposing: boolean): void;
174
+ protected GetKeyBytes(key: SecurityKey): byte[];
175
+ protected IsSupportedAlgorithm(key: SecurityKey, algorithm: string): boolean;
176
+ protected ValidateKeySize(key: SecurityKey, algorithm: string): void;
177
+ }
178
+
179
+
180
+ export interface AuthenticatedEncryptionProvider$instance extends AuthenticatedEncryptionProvider$protected {
166
181
  readonly Algorithm: string;
167
182
  Context: string;
168
183
  readonly Key: SecurityKey;
@@ -181,10 +196,10 @@ export const AuthenticatedEncryptionProvider: {
181
196
  export type AuthenticatedEncryptionProvider = AuthenticatedEncryptionProvider$instance;
182
197
 
183
198
  export interface AuthenticatedEncryptionResult$instance {
184
- readonly AuthenticationTag: byte[];
185
- readonly Ciphertext: byte[];
186
- readonly IV: byte[];
187
- readonly Key: SecurityKey;
199
+ AuthenticationTag: byte[];
200
+ Ciphertext: byte[];
201
+ IV: byte[];
202
+ Key: SecurityKey;
188
203
  }
189
204
 
190
205
 
@@ -205,6 +220,7 @@ export interface BaseConfiguration$instance {
205
220
 
206
221
 
207
222
  export const BaseConfiguration: {
223
+ new(): BaseConfiguration;
208
224
  };
209
225
 
210
226
 
@@ -249,7 +265,7 @@ export const CallContext: {
249
265
  export type CallContext = CallContext$instance;
250
266
 
251
267
  export interface CaseSensitiveClaimsIdentity$instance extends ClaimsIdentity {
252
- readonly SecurityToken: SecurityToken;
268
+ SecurityToken: SecurityToken;
253
269
  FindAll(type: string): IEnumerable<Claim>;
254
270
  FindFirst(type: string): Claim;
255
271
  HasClaim(type: string, value: string): boolean;
@@ -298,7 +314,13 @@ export const CompressionProviderFactory: {
298
314
 
299
315
  export type CompressionProviderFactory = CompressionProviderFactory$instance;
300
316
 
301
- export interface CryptoProviderCache$instance {
317
+ export abstract class CryptoProviderCache$protected {
318
+ protected abstract GetCacheKey(signatureProvider: SignatureProvider): string;
319
+ protected abstract GetCacheKey(securityKey: SecurityKey, algorithm: string, typeofProvider: string): string;
320
+ }
321
+
322
+
323
+ export interface CryptoProviderCache$instance extends CryptoProviderCache$protected {
302
324
  TryAdd(signatureProvider: SignatureProvider): boolean;
303
325
  TryGetSignatureProvider(securityKey: SecurityKey, algorithm: string, typeofProvider: string, willCreateSignatures: boolean, signatureProvider: SignatureProvider): boolean;
304
326
  TryRemove(signatureProvider: SignatureProvider): boolean;
@@ -306,6 +328,7 @@ export interface CryptoProviderCache$instance {
306
328
 
307
329
 
308
330
  export const CryptoProviderCache: {
331
+ new(): CryptoProviderCache;
309
332
  };
310
333
 
311
334
 
@@ -326,7 +349,7 @@ export type CryptoProviderCacheOptions = CryptoProviderCacheOptions$instance;
326
349
 
327
350
  export interface CryptoProviderFactory$instance {
328
351
  CacheSignatureProviders: boolean;
329
- readonly CryptoProviderCache: CryptoProviderCache;
352
+ CryptoProviderCache: CryptoProviderCache;
330
353
  CustomCryptoProvider: ICryptoProvider;
331
354
  SignatureProviderObjectPoolCacheSize: int;
332
355
  CreateAuthenticatedEncryptionProvider(key: SecurityKey, algorithm: string): AuthenticatedEncryptionProvider;
@@ -362,7 +385,7 @@ export type CryptoProviderFactory = CryptoProviderFactory$instance;
362
385
 
363
386
  export interface DeflateCompressionProvider$instance {
364
387
  readonly Algorithm: string;
365
- readonly CompressionLevel: CompressionLevel;
388
+ CompressionLevel: CompressionLevel;
366
389
  MaximumDeflateSize: int;
367
390
  Compress(value: byte[]): byte[];
368
391
  Decompress(value: byte[]): byte[];
@@ -399,7 +422,7 @@ export const EcdhKeyExchangeProvider: {
399
422
  export type EcdhKeyExchangeProvider = EcdhKeyExchangeProvider$instance;
400
423
 
401
424
  export interface ECDsaSecurityKey$instance extends AsymmetricSecurityKey {
402
- readonly ECDsa: ECDsa;
425
+ ECDsa: ECDsa;
403
426
  readonly HasPrivateKey: boolean;
404
427
  readonly KeySize: int;
405
428
  readonly PrivateKeyStatus: PrivateKeyStatus;
@@ -416,16 +439,17 @@ export const ECDsaSecurityKey: {
416
439
  export type ECDsaSecurityKey = ECDsaSecurityKey$instance;
417
440
 
418
441
  export interface EncryptingCredentials$instance {
419
- readonly Alg: string;
442
+ Alg: string;
420
443
  CryptoProviderFactory: CryptoProviderFactory;
421
- readonly Enc: string;
422
- readonly Key: SecurityKey;
444
+ Enc: string;
445
+ Key: SecurityKey;
423
446
  KeyExchangePublicKey: SecurityKey;
424
447
  SetDefaultCtyClaim: boolean;
425
448
  }
426
449
 
427
450
 
428
451
  export const EncryptingCredentials: {
452
+ new(certificate: X509Certificate2, alg: string, enc: string): EncryptingCredentials;
429
453
  new(key: SecurityKey, alg: string, enc: string): EncryptingCredentials;
430
454
  new(key: SymmetricSecurityKey, enc: string): EncryptingCredentials;
431
455
  };
@@ -433,7 +457,14 @@ export const EncryptingCredentials: {
433
457
 
434
458
  export type EncryptingCredentials = EncryptingCredentials$instance;
435
459
 
436
- export interface InMemoryCryptoProviderCache$instance extends CryptoProviderCache {
460
+ export abstract class InMemoryCryptoProviderCache$protected {
461
+ protected Dispose(disposing: boolean): void;
462
+ protected GetCacheKey(signatureProvider: SignatureProvider): string;
463
+ protected GetCacheKey(securityKey: SecurityKey, algorithm: string, typeofProvider: string): string;
464
+ }
465
+
466
+
467
+ export interface InMemoryCryptoProviderCache$instance extends InMemoryCryptoProviderCache$protected, CryptoProviderCache {
437
468
  Dispose(): void;
438
469
  TryAdd(signatureProvider: SignatureProvider): boolean;
439
470
  TryGetSignatureProvider(securityKey: SecurityKey, algorithm: string, typeofProvider: string, willCreateSignatures: boolean, signatureProvider: SignatureProvider): boolean;
@@ -510,7 +541,7 @@ export type JsonWebKeyConverter = JsonWebKeyConverter$instance;
510
541
 
511
542
  export interface JsonWebKeySet$instance {
512
543
  readonly AdditionalData: IDictionary<System_Internal.String, unknown>;
513
- readonly Keys: IList<JsonWebKey>;
544
+ Keys: IList<JsonWebKey>;
514
545
  SkipUnresolvedJsonWebKeys: boolean;
515
546
  GetSigningKeys(): IList<SecurityKey>;
516
547
  }
@@ -526,7 +557,12 @@ export const JsonWebKeySet: {
526
557
 
527
558
  export type JsonWebKeySet = JsonWebKeySet$instance;
528
559
 
529
- export interface KeyWrapProvider$instance {
560
+ export abstract class KeyWrapProvider$protected {
561
+ protected abstract Dispose(disposing: boolean): void;
562
+ }
563
+
564
+
565
+ export interface KeyWrapProvider$instance extends KeyWrapProvider$protected {
530
566
  readonly Algorithm: string;
531
567
  Context: string;
532
568
  readonly Key: SecurityKey;
@@ -537,15 +573,23 @@ export interface KeyWrapProvider$instance {
537
573
 
538
574
 
539
575
  export const KeyWrapProvider: {
576
+ new(): KeyWrapProvider;
540
577
  };
541
578
 
542
579
 
543
580
  export type KeyWrapProvider = KeyWrapProvider$instance;
544
581
 
545
- export interface RsaKeyWrapProvider$instance extends KeyWrapProvider {
582
+ export abstract class RsaKeyWrapProvider$protected {
583
+ protected Dispose2(disposing: boolean): void;
584
+ protected IsSupportedAlgorithm(key: SecurityKey, algorithm: string): boolean;
585
+ }
586
+
587
+
588
+ export interface RsaKeyWrapProvider$instance extends RsaKeyWrapProvider$protected, KeyWrapProvider {
546
589
  readonly Algorithm: string;
547
590
  Context: string;
548
591
  readonly Key: SecurityKey;
592
+ Dispose(): void;
549
593
  UnwrapKey(keyBytes: byte[]): byte[];
550
594
  WrapKey(keyBytes: byte[]): byte[];
551
595
  }
@@ -561,9 +605,9 @@ export type RsaKeyWrapProvider = RsaKeyWrapProvider$instance;
561
605
  export interface RsaSecurityKey$instance extends AsymmetricSecurityKey {
562
606
  readonly HasPrivateKey: boolean;
563
607
  readonly KeySize: int;
564
- readonly Parameters: RSAParameters;
608
+ Parameters: RSAParameters;
565
609
  readonly PrivateKeyStatus: PrivateKeyStatus;
566
- readonly Rsa: RSA;
610
+ Rsa: RSA;
567
611
  CanComputeJwkThumbprint(): boolean;
568
612
  ComputeJwkThumbprint(): byte[];
569
613
  }
@@ -618,6 +662,7 @@ export interface SecurityToken$instance {
618
662
 
619
663
 
620
664
  export const SecurityToken: {
665
+ new(): SecurityToken;
621
666
  };
622
667
 
623
668
 
@@ -638,6 +683,7 @@ export const SecurityTokenArgumentException: {
638
683
  new(): SecurityTokenArgumentException;
639
684
  new(message: string): SecurityTokenArgumentException;
640
685
  new(message: string, innerException: Exception): SecurityTokenArgumentException;
686
+ new(info: SerializationInfo, context: StreamingContext): SecurityTokenArgumentException;
641
687
  };
642
688
 
643
689
 
@@ -651,6 +697,7 @@ export const SecurityTokenCompressionFailedException: {
651
697
  new(): SecurityTokenCompressionFailedException;
652
698
  new(message: string): SecurityTokenCompressionFailedException;
653
699
  new(message: string, inner: Exception): SecurityTokenCompressionFailedException;
700
+ new(info: SerializationInfo, context: StreamingContext): SecurityTokenCompressionFailedException;
654
701
  };
655
702
 
656
703
 
@@ -664,6 +711,7 @@ export const SecurityTokenDecompressionFailedException: {
664
711
  new(): SecurityTokenDecompressionFailedException;
665
712
  new(message: string): SecurityTokenDecompressionFailedException;
666
713
  new(message: string, inner: Exception): SecurityTokenDecompressionFailedException;
714
+ new(info: SerializationInfo, context: StreamingContext): SecurityTokenDecompressionFailedException;
667
715
  };
668
716
 
669
717
 
@@ -677,6 +725,7 @@ export const SecurityTokenDecryptionFailedException: {
677
725
  new(): SecurityTokenDecryptionFailedException;
678
726
  new(message: string): SecurityTokenDecryptionFailedException;
679
727
  new(message: string, innerException: Exception): SecurityTokenDecryptionFailedException;
728
+ new(info: SerializationInfo, context: StreamingContext): SecurityTokenDecryptionFailedException;
680
729
  };
681
730
 
682
731
 
@@ -715,6 +764,7 @@ export const SecurityTokenEncryptionFailedException: {
715
764
  new(): SecurityTokenEncryptionFailedException;
716
765
  new(message: string): SecurityTokenEncryptionFailedException;
717
766
  new(message: string, innerException: Exception): SecurityTokenEncryptionFailedException;
767
+ new(info: SerializationInfo, context: StreamingContext): SecurityTokenEncryptionFailedException;
718
768
  };
719
769
 
720
770
 
@@ -728,6 +778,7 @@ export const SecurityTokenEncryptionKeyNotFoundException: {
728
778
  new(): SecurityTokenEncryptionKeyNotFoundException;
729
779
  new(message: string): SecurityTokenEncryptionKeyNotFoundException;
730
780
  new(message: string, innerException: Exception): SecurityTokenEncryptionKeyNotFoundException;
781
+ new(info: SerializationInfo, context: StreamingContext): SecurityTokenEncryptionKeyNotFoundException;
731
782
  };
732
783
 
733
784
 
@@ -742,6 +793,7 @@ export const SecurityTokenException: {
742
793
  new(): SecurityTokenException;
743
794
  new(message: string): SecurityTokenException;
744
795
  new(message: string, innerException: Exception): SecurityTokenException;
796
+ new(info: SerializationInfo, context: StreamingContext): SecurityTokenException;
745
797
  };
746
798
 
747
799
 
@@ -757,6 +809,7 @@ export const SecurityTokenExpiredException: {
757
809
  new(): SecurityTokenExpiredException;
758
810
  new(message: string): SecurityTokenExpiredException;
759
811
  new(message: string, inner: Exception): SecurityTokenExpiredException;
812
+ new(info: SerializationInfo, context: StreamingContext): SecurityTokenExpiredException;
760
813
  };
761
814
 
762
815
 
@@ -779,6 +832,7 @@ export interface SecurityTokenHandler$instance extends TokenHandler {
779
832
 
780
833
 
781
834
  export const SecurityTokenHandler: {
835
+ new(): SecurityTokenHandler;
782
836
  };
783
837
 
784
838
 
@@ -801,6 +855,7 @@ export const SecurityTokenInvalidAlgorithmException: {
801
855
  new(): SecurityTokenInvalidAlgorithmException;
802
856
  new(message: string): SecurityTokenInvalidAlgorithmException;
803
857
  new(message: string, innerException: Exception): SecurityTokenInvalidAlgorithmException;
858
+ new(info: SerializationInfo, context: StreamingContext): SecurityTokenInvalidAlgorithmException;
804
859
  };
805
860
 
806
861
 
@@ -816,6 +871,7 @@ export const SecurityTokenInvalidAudienceException: {
816
871
  new(): SecurityTokenInvalidAudienceException;
817
872
  new(message: string): SecurityTokenInvalidAudienceException;
818
873
  new(message: string, innerException: Exception): SecurityTokenInvalidAudienceException;
874
+ new(info: SerializationInfo, context: StreamingContext): SecurityTokenInvalidAudienceException;
819
875
  };
820
876
 
821
877
 
@@ -831,6 +887,7 @@ export const SecurityTokenInvalidIssuerException: {
831
887
  new(): SecurityTokenInvalidIssuerException;
832
888
  new(message: string): SecurityTokenInvalidIssuerException;
833
889
  new(message: string, innerException: Exception): SecurityTokenInvalidIssuerException;
890
+ new(info: SerializationInfo, context: StreamingContext): SecurityTokenInvalidIssuerException;
834
891
  };
835
892
 
836
893
 
@@ -847,6 +904,7 @@ export const SecurityTokenInvalidLifetimeException: {
847
904
  new(): SecurityTokenInvalidLifetimeException;
848
905
  new(message: string): SecurityTokenInvalidLifetimeException;
849
906
  new(message: string, innerException: Exception): SecurityTokenInvalidLifetimeException;
907
+ new(info: SerializationInfo, context: StreamingContext): SecurityTokenInvalidLifetimeException;
850
908
  };
851
909
 
852
910
 
@@ -860,6 +918,7 @@ export const SecurityTokenInvalidSignatureException: {
860
918
  new(): SecurityTokenInvalidSignatureException;
861
919
  new(message: string): SecurityTokenInvalidSignatureException;
862
920
  new(message: string, innerException: Exception): SecurityTokenInvalidSignatureException;
921
+ new(info: SerializationInfo, context: StreamingContext): SecurityTokenInvalidSignatureException;
863
922
  };
864
923
 
865
924
 
@@ -874,6 +933,7 @@ export const SecurityTokenInvalidSigningKeyException: {
874
933
  new(): SecurityTokenInvalidSigningKeyException;
875
934
  new(message: string): SecurityTokenInvalidSigningKeyException;
876
935
  new(message: string, inner: Exception): SecurityTokenInvalidSigningKeyException;
936
+ new(info: SerializationInfo, context: StreamingContext): SecurityTokenInvalidSigningKeyException;
877
937
  };
878
938
 
879
939
 
@@ -889,6 +949,7 @@ export const SecurityTokenInvalidTypeException: {
889
949
  new(): SecurityTokenInvalidTypeException;
890
950
  new(message: string): SecurityTokenInvalidTypeException;
891
951
  new(message: string, innerException: Exception): SecurityTokenInvalidTypeException;
952
+ new(info: SerializationInfo, context: StreamingContext): SecurityTokenInvalidTypeException;
892
953
  };
893
954
 
894
955
 
@@ -902,6 +963,7 @@ export const SecurityTokenKeyWrapException: {
902
963
  new(): SecurityTokenKeyWrapException;
903
964
  new(message: string): SecurityTokenKeyWrapException;
904
965
  new(message: string, innerException: Exception): SecurityTokenKeyWrapException;
966
+ new(info: SerializationInfo, context: StreamingContext): SecurityTokenKeyWrapException;
905
967
  };
906
968
 
907
969
 
@@ -915,6 +977,7 @@ export const SecurityTokenMalformedException: {
915
977
  new(): SecurityTokenMalformedException;
916
978
  new(message: string): SecurityTokenMalformedException;
917
979
  new(message: string, innerException: Exception): SecurityTokenMalformedException;
980
+ new(info: SerializationInfo, context: StreamingContext): SecurityTokenMalformedException;
918
981
  };
919
982
 
920
983
 
@@ -928,6 +991,7 @@ export const SecurityTokenNoExpirationException: {
928
991
  new(): SecurityTokenNoExpirationException;
929
992
  new(message: string): SecurityTokenNoExpirationException;
930
993
  new(message: string, innerException: Exception): SecurityTokenNoExpirationException;
994
+ new(info: SerializationInfo, context: StreamingContext): SecurityTokenNoExpirationException;
931
995
  };
932
996
 
933
997
 
@@ -943,6 +1007,7 @@ export const SecurityTokenNotYetValidException: {
943
1007
  new(): SecurityTokenNotYetValidException;
944
1008
  new(message: string): SecurityTokenNotYetValidException;
945
1009
  new(message: string, inner: Exception): SecurityTokenNotYetValidException;
1010
+ new(info: SerializationInfo, context: StreamingContext): SecurityTokenNotYetValidException;
946
1011
  };
947
1012
 
948
1013
 
@@ -956,6 +1021,7 @@ export const SecurityTokenReplayAddFailedException: {
956
1021
  new(): SecurityTokenReplayAddFailedException;
957
1022
  new(message: string): SecurityTokenReplayAddFailedException;
958
1023
  new(message: string, innerException: Exception): SecurityTokenReplayAddFailedException;
1024
+ new(info: SerializationInfo, context: StreamingContext): SecurityTokenReplayAddFailedException;
959
1025
  };
960
1026
 
961
1027
 
@@ -969,6 +1035,7 @@ export const SecurityTokenReplayDetectedException: {
969
1035
  new(): SecurityTokenReplayDetectedException;
970
1036
  new(message: string): SecurityTokenReplayDetectedException;
971
1037
  new(message: string, inner: Exception): SecurityTokenReplayDetectedException;
1038
+ new(info: SerializationInfo, context: StreamingContext): SecurityTokenReplayDetectedException;
972
1039
  };
973
1040
 
974
1041
 
@@ -982,6 +1049,7 @@ export const SecurityTokenSignatureKeyNotFoundException: {
982
1049
  new(): SecurityTokenSignatureKeyNotFoundException;
983
1050
  new(message: string): SecurityTokenSignatureKeyNotFoundException;
984
1051
  new(message: string, innerException: Exception): SecurityTokenSignatureKeyNotFoundException;
1052
+ new(info: SerializationInfo, context: StreamingContext): SecurityTokenSignatureKeyNotFoundException;
985
1053
  };
986
1054
 
987
1055
 
@@ -998,6 +1066,7 @@ export const SecurityTokenUnableToValidateException: {
998
1066
  new(validationFailure: ValidationFailure, message: string): SecurityTokenUnableToValidateException;
999
1067
  new(message: string): SecurityTokenUnableToValidateException;
1000
1068
  new(message: string, innerException: Exception): SecurityTokenUnableToValidateException;
1069
+ new(info: SerializationInfo, context: StreamingContext): SecurityTokenUnableToValidateException;
1001
1070
  };
1002
1071
 
1003
1072
 
@@ -1011,17 +1080,23 @@ export const SecurityTokenValidationException: {
1011
1080
  new(): SecurityTokenValidationException;
1012
1081
  new(message: string): SecurityTokenValidationException;
1013
1082
  new(message: string, innerException: Exception): SecurityTokenValidationException;
1083
+ new(info: SerializationInfo, context: StreamingContext): SecurityTokenValidationException;
1014
1084
  };
1015
1085
 
1016
1086
 
1017
1087
  export type SecurityTokenValidationException = SecurityTokenValidationException$instance;
1018
1088
 
1019
- export interface SignatureProvider$instance {
1020
- readonly Algorithm: string;
1089
+ export abstract class SignatureProvider$protected {
1090
+ protected abstract Dispose(disposing: boolean): void;
1091
+ }
1092
+
1093
+
1094
+ export interface SignatureProvider$instance extends SignatureProvider$protected {
1095
+ Algorithm: string;
1021
1096
  Context: string;
1022
1097
  CryptoProviderCache: CryptoProviderCache;
1023
- readonly Key: SecurityKey;
1024
- readonly WillCreateSignatures: boolean;
1098
+ Key: SecurityKey;
1099
+ WillCreateSignatures: boolean;
1025
1100
  Dispose(): void;
1026
1101
  Sign(input: byte[]): byte[];
1027
1102
  Sign(input: byte[], offset: int, count: int): byte[];
@@ -1032,21 +1107,24 @@ export interface SignatureProvider$instance {
1032
1107
 
1033
1108
 
1034
1109
  export const SignatureProvider: {
1110
+ new(key: SecurityKey, algorithm: string): SignatureProvider;
1035
1111
  };
1036
1112
 
1037
1113
 
1038
1114
  export type SignatureProvider = SignatureProvider$instance;
1039
1115
 
1040
1116
  export interface SigningCredentials$instance {
1041
- readonly Algorithm: string;
1117
+ Algorithm: string;
1042
1118
  CryptoProviderFactory: CryptoProviderFactory;
1043
- readonly Digest: string;
1044
- readonly Key: SecurityKey;
1119
+ Digest: string;
1120
+ Key: SecurityKey;
1045
1121
  readonly Kid: string;
1046
1122
  }
1047
1123
 
1048
1124
 
1049
1125
  export const SigningCredentials: {
1126
+ new(certificate: X509Certificate2): SigningCredentials;
1127
+ new(certificate: X509Certificate2, algorithm: string): SigningCredentials;
1050
1128
  new(key: SecurityKey, algorithm: string): SigningCredentials;
1051
1129
  new(key: SecurityKey, algorithm: string, digest: string): SigningCredentials;
1052
1130
  };
@@ -1054,10 +1132,18 @@ export const SigningCredentials: {
1054
1132
 
1055
1133
  export type SigningCredentials = SigningCredentials$instance;
1056
1134
 
1057
- export interface SymmetricKeyWrapProvider$instance extends KeyWrapProvider {
1135
+ export abstract class SymmetricKeyWrapProvider$protected {
1136
+ protected Dispose2(disposing: boolean): void;
1137
+ protected GetSymmetricAlgorithm(key: SecurityKey, algorithm: string): SymmetricAlgorithm;
1138
+ protected IsSupportedAlgorithm(key: SecurityKey, algorithm: string): boolean;
1139
+ }
1140
+
1141
+
1142
+ export interface SymmetricKeyWrapProvider$instance extends SymmetricKeyWrapProvider$protected, KeyWrapProvider {
1058
1143
  readonly Algorithm: string;
1059
1144
  Context: string;
1060
1145
  readonly Key: SecurityKey;
1146
+ Dispose(): void;
1061
1147
  UnwrapKey(keyBytes: byte[]): byte[];
1062
1148
  WrapKey(keyBytes: byte[]): byte[];
1063
1149
  }
@@ -1085,8 +1171,17 @@ export const SymmetricSecurityKey: {
1085
1171
 
1086
1172
  export type SymmetricSecurityKey = SymmetricSecurityKey$instance;
1087
1173
 
1088
- export interface SymmetricSignatureProvider$instance extends SignatureProvider {
1174
+ export abstract class SymmetricSignatureProvider$protected {
1175
+ protected Dispose2(disposing: boolean): void;
1176
+ protected GetKeyBytes(key: SecurityKey): byte[];
1177
+ protected GetKeyedHashAlgorithm(keyBytes: byte[], algorithm: string): KeyedHashAlgorithm;
1178
+ protected ReleaseKeyedHashAlgorithm(keyedHashAlgorithm: KeyedHashAlgorithm): void;
1179
+ }
1180
+
1181
+
1182
+ export interface SymmetricSignatureProvider$instance extends SymmetricSignatureProvider$protected, SignatureProvider {
1089
1183
  MinimumSymmetricKeySizeInBits: int;
1184
+ Dispose(): void;
1090
1185
  Sign(input: byte[]): byte[];
1091
1186
  Sign(input: ReadOnlySpan<System_Internal.Byte>, signature: Span<System_Internal.Byte>, bytesWritten: int): boolean;
1092
1187
  Sign(input: byte[], offset: int, count: int): byte[];
@@ -1129,6 +1224,7 @@ export interface TokenHandler$instance {
1129
1224
 
1130
1225
 
1131
1226
  export const TokenHandler: {
1227
+ new(): TokenHandler;
1132
1228
  readonly DefaultTokenLifetimeInMinutes: int;
1133
1229
  };
1134
1230
 
@@ -1147,7 +1243,7 @@ export interface TokenValidationParameters$instance {
1147
1243
  IgnoreTrailingSlashWhenValidatingAudience: boolean;
1148
1244
  IncludeTokenOnFailedValidation: boolean;
1149
1245
  readonly InstancePropertyBag: IDictionary<System_Internal.String, unknown>;
1150
- readonly IsClone: boolean;
1246
+ IsClone: boolean;
1151
1247
  IssuerSigningKey: SecurityKey;
1152
1248
  IssuerSigningKeyResolver: IssuerSigningKeyResolver;
1153
1249
  IssuerSigningKeyResolverUsingConfiguration: IssuerSigningKeyResolverUsingConfiguration;
@@ -1200,6 +1296,7 @@ export interface TokenValidationParameters$instance {
1200
1296
 
1201
1297
 
1202
1298
  export const TokenValidationParameters: {
1299
+ new(other: TokenValidationParameters): TokenValidationParameters;
1203
1300
  new(): TokenValidationParameters;
1204
1301
  readonly DefaultAuthenticationType: string;
1205
1302
  readonly DefaultClockSkew: TimeSpan;
@@ -1218,7 +1315,7 @@ export interface TokenValidationResult$instance {
1218
1315
  readonly PropertyBag: IDictionary<System_Internal.String, unknown>;
1219
1316
  SecurityToken: SecurityToken;
1220
1317
  TokenContext: CallContext;
1221
- readonly TokenOnFailedValidation: SecurityToken;
1318
+ TokenOnFailedValidation: SecurityToken;
1222
1319
  TokenType: string;
1223
1320
  }
1224
1321
 
@@ -1231,7 +1328,8 @@ export const TokenValidationResult: {
1231
1328
  export type TokenValidationResult = TokenValidationResult$instance;
1232
1329
 
1233
1330
  export interface X509EncryptingCredentials$instance extends EncryptingCredentials {
1234
- readonly Certificate: X509Certificate2 | undefined;
1331
+ get Certificate(): X509Certificate2 | undefined;
1332
+ set Certificate(value: X509Certificate2);
1235
1333
  }
1236
1334
 
1237
1335
 
@@ -1244,7 +1342,8 @@ export const X509EncryptingCredentials: {
1244
1342
  export type X509EncryptingCredentials = X509EncryptingCredentials$instance;
1245
1343
 
1246
1344
  export interface X509SecurityKey$instance extends AsymmetricSecurityKey {
1247
- readonly Certificate: X509Certificate2 | undefined;
1345
+ get Certificate(): X509Certificate2 | undefined;
1346
+ set Certificate(value: X509Certificate2);
1248
1347
  readonly HasPrivateKey: boolean;
1249
1348
  readonly KeySize: int;
1250
1349
  readonly PrivateKey: AsymmetricAlgorithm;
@@ -1267,7 +1366,8 @@ export const X509SecurityKey: {
1267
1366
  export type X509SecurityKey = X509SecurityKey$instance;
1268
1367
 
1269
1368
  export interface X509SigningCredentials$instance extends SigningCredentials {
1270
- readonly Certificate: X509Certificate2 | undefined;
1369
+ get Certificate(): X509Certificate2 | undefined;
1370
+ set Certificate(value: X509Certificate2);
1271
1371
  }
1272
1372
 
1273
1373
 
@@ -15,6 +15,10 @@
15
15
  "isSealed": false,
16
16
  "isStatic": false,
17
17
  "arity": 0,
18
+ "baseType": {
19
+ "stableId": "System.Private.CoreLib:System.Object",
20
+ "clrName": "System.Object"
21
+ },
18
22
  "methods": [],
19
23
  "properties": [
20
24
  {
@@ -32,6 +36,7 @@
32
36
  "isAbstract": false,
33
37
  "isVirtual": false,
34
38
  "isOverride": false,
39
+ "visibility": "Public",
35
40
  "declaringClrType": "Microsoft.IdentityModel.Tokens.Configuration.LKGConfigurationCacheOptions",
36
41
  "declaringAssemblyName": "Microsoft.IdentityModel.Tokens"
37
42
  },
@@ -50,6 +55,7 @@
50
55
  "isAbstract": false,
51
56
  "isVirtual": false,
52
57
  "isOverride": false,
58
+ "visibility": "Public",
53
59
  "declaringClrType": "Microsoft.IdentityModel.Tokens.Configuration.LKGConfigurationCacheOptions",
54
60
  "declaringAssemblyName": "Microsoft.IdentityModel.Tokens"
55
61
  },
@@ -68,6 +74,7 @@
68
74
  "isAbstract": false,
69
75
  "isVirtual": false,
70
76
  "isOverride": false,
77
+ "visibility": "Public",
71
78
  "declaringClrType": "Microsoft.IdentityModel.Tokens.Configuration.LKGConfigurationCacheOptions",
72
79
  "declaringAssemblyName": "Microsoft.IdentityModel.Tokens"
73
80
  },
@@ -86,6 +93,7 @@
86
93
  "isAbstract": false,
87
94
  "isVirtual": false,
88
95
  "isOverride": false,
96
+ "visibility": "Public",
89
97
  "declaringClrType": "Microsoft.IdentityModel.Tokens.Configuration.LKGConfigurationCacheOptions",
90
98
  "declaringAssemblyName": "Microsoft.IdentityModel.Tokens"
91
99
  }
@@ -99,6 +107,7 @@
99
107
  "isStatic": true,
100
108
  "isReadOnly": true,
101
109
  "isLiteral": false,
110
+ "visibility": "Public",
102
111
  "declaringClrType": "Microsoft.IdentityModel.Tokens.Configuration.LKGConfigurationCacheOptions",
103
112
  "declaringAssemblyName": "Microsoft.IdentityModel.Tokens"
104
113
  }
@@ -112,6 +121,7 @@
112
121
  "normalizedSignature": "constructor|():void|static=false",
113
122
  "isStatic": false,
114
123
  "parameterCount": 0,
124
+ "visibility": "Public",
115
125
  "declaringClrType": "Microsoft.IdentityModel.Tokens.Configuration.LKGConfigurationCacheOptions",
116
126
  "declaringAssemblyName": "Microsoft.IdentityModel.Tokens"
117
127
  }
@@ -13,7 +13,7 @@ import type { CompressionLevel } from '@tsonic/dotnet/System.IO.Compression.js';
13
13
  import type { ArgumentException, AsyncCallback, Boolean as ClrBoolean, Byte, Char, DateTime, DateTimeKind, Enum, Exception, Func, Guid, IAsyncResult, ICloneable, IComparable, IConvertible, IDisposable, IFormattable, Int32, Int64, IntPtr, ISpanFormattable, MulticastDelegate, Nullable, Object as ClrObject, ReadOnlySpan, Span, String as ClrString, TimeSpan, Type, Uri, Void } from '@tsonic/dotnet/System.js';
14
14
  import type { ISerializable, SerializationInfo, StreamingContext } from '@tsonic/dotnet/System.Runtime.Serialization.js';
15
15
  import type { Claim, ClaimsIdentity, ClaimsPrincipal } from '@tsonic/dotnet/System.Security.Claims.js';
16
- import type { AsymmetricAlgorithm, ECDsa, HashAlgorithm, HashAlgorithmName, KeyedHashAlgorithm, RSA, RSAParameters } from '@tsonic/dotnet/System.Security.Cryptography.js';
16
+ import type { AsymmetricAlgorithm, ECDsa, HashAlgorithm, HashAlgorithmName, KeyedHashAlgorithm, RSA, RSAParameters, SymmetricAlgorithm } from '@tsonic/dotnet/System.Security.Cryptography.js';
17
17
  import type { X509Certificate2 } from '@tsonic/dotnet/System.Security.Cryptography.X509Certificates.js';
18
18
  import type { IIdentity } from '@tsonic/dotnet/System.Security.Principal.js';
19
19
  import type { CancellationToken } from '@tsonic/dotnet/System.Threading.js';