@tsonic/microsoft-extensions 10.0.7 → 10.0.8
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/Microsoft.Extensions.Caching.Memory/internal/index.d.ts +2 -2
- package/Microsoft.Extensions.Configuration/internal/index.d.ts +7 -14
- package/Microsoft.Extensions.Configuration.Memory/internal/index.d.ts +1 -1
- package/Microsoft.Extensions.DependencyInjection/internal/index.d.ts +2 -3
- package/Microsoft.Extensions.Primitives/internal/index.d.ts +2 -4
- package/System.Diagnostics/internal/index.d.ts +1 -2
- package/System.Security.Cryptography/internal/index.d.ts +1 -2
- package/System.Security.Cryptography.Pkcs/internal/index.d.ts +3 -6
- package/System.Security.Cryptography.Xml/internal/index.d.ts +3 -6
- package/package.json +1 -1
|
@@ -131,7 +131,7 @@ export const MemoryCacheEntryOptions: {
|
|
|
131
131
|
|
|
132
132
|
export type MemoryCacheEntryOptions = MemoryCacheEntryOptions$instance;
|
|
133
133
|
|
|
134
|
-
export interface MemoryCacheOptions$instance {
|
|
134
|
+
export interface MemoryCacheOptions$instance extends Microsoft_Extensions_Options_Internal.IOptions_1$instance<MemoryCacheOptions> {
|
|
135
135
|
readonly __tsonic_type_Microsoft_Extensions_Caching_Memory_MemoryCacheOptions: never;
|
|
136
136
|
|
|
137
137
|
readonly __tsonic_iface_Microsoft_Extensions_Options_IOptions_1: never;
|
|
@@ -176,7 +176,7 @@ export const MemoryCacheStatistics: {
|
|
|
176
176
|
|
|
177
177
|
export type MemoryCacheStatistics = MemoryCacheStatistics$instance;
|
|
178
178
|
|
|
179
|
-
export interface MemoryDistributedCacheOptions$instance extends MemoryCacheOptions$instance {
|
|
179
|
+
export interface MemoryDistributedCacheOptions$instance extends MemoryCacheOptions$instance, Microsoft_Extensions_Options_Internal.IOptions_1$instance<MemoryCacheOptions> {
|
|
180
180
|
readonly __tsonic_type_Microsoft_Extensions_Caching_Memory_MemoryDistributedCacheOptions: never;
|
|
181
181
|
|
|
182
182
|
readonly __tsonic_iface_Microsoft_Extensions_Options_IOptions_1: never;
|
|
@@ -28,14 +28,13 @@ import type { Action_1, Attribute, Boolean as ClrBoolean, Exception, Func_2, IDi
|
|
|
28
28
|
export interface IConfiguration$instance {
|
|
29
29
|
readonly __tsonic_iface_Microsoft_Extensions_Configuration_IConfiguration: never;
|
|
30
30
|
|
|
31
|
-
[key: string]: string | undefined;
|
|
32
31
|
GetChildren(): IEnumerable_1<IConfigurationSection>;
|
|
33
32
|
GetReloadToken(): IChangeToken;
|
|
34
33
|
GetSection(key: string): IConfigurationSection;
|
|
35
34
|
}
|
|
36
35
|
|
|
37
36
|
|
|
38
|
-
export type IConfiguration = IConfiguration$instance;
|
|
37
|
+
export type IConfiguration = IConfiguration$instance & { [key: string]: string | undefined; };
|
|
39
38
|
|
|
40
39
|
export interface IConfigurationBuilder$instance {
|
|
41
40
|
readonly __tsonic_iface_Microsoft_Extensions_Configuration_IConfigurationBuilder: never;
|
|
@@ -52,7 +51,6 @@ export type IConfigurationBuilder = IConfigurationBuilder$instance;
|
|
|
52
51
|
export interface IConfigurationManager$instance extends IConfiguration, IConfigurationBuilder {
|
|
53
52
|
readonly __tsonic_iface_Microsoft_Extensions_Configuration_IConfigurationManager: never;
|
|
54
53
|
|
|
55
|
-
[key: string]: string | undefined;
|
|
56
54
|
readonly Properties: IDictionary_2<System_Internal.String, unknown>;
|
|
57
55
|
readonly Sources: IList_1<IConfigurationSource>;
|
|
58
56
|
Add(source: IConfigurationSource): IConfigurationBuilder;
|
|
@@ -65,7 +63,7 @@ export interface IConfigurationManager$instance extends IConfiguration, IConfigu
|
|
|
65
63
|
|
|
66
64
|
export interface IConfigurationManager$instance extends IConfiguration$instance, IConfigurationBuilder$instance {}
|
|
67
65
|
|
|
68
|
-
export type IConfigurationManager = IConfigurationManager$instance;
|
|
66
|
+
export type IConfigurationManager = IConfigurationManager$instance & { [key: string]: string | undefined; };
|
|
69
67
|
|
|
70
68
|
export interface IConfigurationProvider$instance {
|
|
71
69
|
readonly __tsonic_iface_Microsoft_Extensions_Configuration_IConfigurationProvider: never;
|
|
@@ -84,7 +82,6 @@ export interface IConfigurationRoot$instance extends IConfiguration {
|
|
|
84
82
|
readonly __tsonic_iface_Microsoft_Extensions_Configuration_IConfigurationRoot: never;
|
|
85
83
|
|
|
86
84
|
readonly Providers: IEnumerable_1<IConfigurationProvider>;
|
|
87
|
-
[key: string]: string | undefined;
|
|
88
85
|
GetChildren(): IEnumerable_1<IConfigurationSection>;
|
|
89
86
|
GetReloadToken(): IChangeToken;
|
|
90
87
|
GetSection(key: string): IConfigurationSection;
|
|
@@ -94,7 +91,7 @@ export interface IConfigurationRoot$instance extends IConfiguration {
|
|
|
94
91
|
|
|
95
92
|
export interface IConfigurationRoot$instance extends IConfiguration$instance {}
|
|
96
93
|
|
|
97
|
-
export type IConfigurationRoot = IConfigurationRoot$instance;
|
|
94
|
+
export type IConfigurationRoot = IConfigurationRoot$instance & { [key: string]: string | undefined; };
|
|
98
95
|
|
|
99
96
|
export interface IConfigurationSection$instance extends IConfiguration {
|
|
100
97
|
readonly __tsonic_iface_Microsoft_Extensions_Configuration_IConfigurationSection: never;
|
|
@@ -103,7 +100,6 @@ export interface IConfigurationSection$instance extends IConfiguration {
|
|
|
103
100
|
readonly Path: string;
|
|
104
101
|
get Value(): string | undefined;
|
|
105
102
|
set Value(value: string | undefined);
|
|
106
|
-
[key: string]: string | undefined;
|
|
107
103
|
GetChildren(): IEnumerable_1<IConfigurationSection>;
|
|
108
104
|
GetReloadToken(): IChangeToken;
|
|
109
105
|
GetSection(key: string): IConfigurationSection;
|
|
@@ -112,7 +108,7 @@ export interface IConfigurationSection$instance extends IConfiguration {
|
|
|
112
108
|
|
|
113
109
|
export interface IConfigurationSection$instance extends IConfiguration$instance {}
|
|
114
110
|
|
|
115
|
-
export type IConfigurationSection = IConfigurationSection$instance;
|
|
111
|
+
export type IConfigurationSection = IConfigurationSection$instance & { [key: string]: string | undefined; };
|
|
116
112
|
|
|
117
113
|
export interface IConfigurationSource$instance {
|
|
118
114
|
readonly __tsonic_iface_Microsoft_Extensions_Configuration_IConfigurationSource: never;
|
|
@@ -271,7 +267,6 @@ export interface ConfigurationManager$instance extends System_Internal.IDisposab
|
|
|
271
267
|
readonly __tsonic_iface_Microsoft_Extensions_Configuration_IConfigurationRoot: never;
|
|
272
268
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
273
269
|
|
|
274
|
-
[key: string]: string | undefined;
|
|
275
270
|
readonly Sources: IList_1<IConfigurationSource>;
|
|
276
271
|
Dispose(): void;
|
|
277
272
|
GetChildren(): IEnumerable_1<IConfigurationSection>;
|
|
@@ -290,7 +285,7 @@ export interface __ConfigurationManager$views {
|
|
|
290
285
|
As_IConfigurationRoot(): IConfigurationRoot$instance;
|
|
291
286
|
}
|
|
292
287
|
|
|
293
|
-
export type ConfigurationManager = ConfigurationManager$instance & __ConfigurationManager$views;
|
|
288
|
+
export type ConfigurationManager = ConfigurationManager$instance & __ConfigurationManager$views & { [key: string]: string | undefined; };
|
|
294
289
|
|
|
295
290
|
|
|
296
291
|
export interface ConfigurationProvider$instance extends IConfigurationProvider$instance {
|
|
@@ -349,7 +344,6 @@ export interface ConfigurationRoot$instance extends System_Internal.IDisposable
|
|
|
349
344
|
readonly __tsonic_iface_Microsoft_Extensions_Configuration_IConfigurationRoot: never;
|
|
350
345
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
351
346
|
|
|
352
|
-
[key: string]: string | undefined;
|
|
353
347
|
readonly Providers: IEnumerable_1<IConfigurationProvider>;
|
|
354
348
|
Dispose(): void;
|
|
355
349
|
GetChildren(): IEnumerable_1<IConfigurationSection>;
|
|
@@ -369,7 +363,7 @@ export interface __ConfigurationRoot$views {
|
|
|
369
363
|
As_IConfigurationRoot(): IConfigurationRoot$instance;
|
|
370
364
|
}
|
|
371
365
|
|
|
372
|
-
export type ConfigurationRoot = ConfigurationRoot$instance & __ConfigurationRoot$views;
|
|
366
|
+
export type ConfigurationRoot = ConfigurationRoot$instance & __ConfigurationRoot$views & { [key: string]: string | undefined; };
|
|
373
367
|
|
|
374
368
|
|
|
375
369
|
export interface ConfigurationSection$instance {
|
|
@@ -378,7 +372,6 @@ export interface ConfigurationSection$instance {
|
|
|
378
372
|
readonly __tsonic_iface_Microsoft_Extensions_Configuration_IConfiguration: never;
|
|
379
373
|
readonly __tsonic_iface_Microsoft_Extensions_Configuration_IConfigurationSection: never;
|
|
380
374
|
|
|
381
|
-
[key: string]: string | undefined;
|
|
382
375
|
readonly Key: string;
|
|
383
376
|
readonly Path: string;
|
|
384
377
|
get Value(): string | undefined;
|
|
@@ -400,7 +393,7 @@ export interface __ConfigurationSection$views {
|
|
|
400
393
|
As_IConfigurationSection(): IConfigurationSection$instance;
|
|
401
394
|
}
|
|
402
395
|
|
|
403
|
-
export type ConfigurationSection = ConfigurationSection$instance & __ConfigurationSection$views;
|
|
396
|
+
export type ConfigurationSection = ConfigurationSection$instance & __ConfigurationSection$views & { [key: string]: string | undefined; };
|
|
404
397
|
|
|
405
398
|
|
|
406
399
|
export interface FileConfigurationProvider$instance extends ConfigurationProvider$instance, System_Internal.IDisposable {
|
|
@@ -19,7 +19,7 @@ import type { IEnumerable } from "@tsonic/dotnet/System.Collections/internal/ind
|
|
|
19
19
|
import * as System_Internal from "@tsonic/dotnet/System/internal/index.js";
|
|
20
20
|
import type { Boolean as ClrBoolean, Object as ClrObject, String as ClrString, Void } from "@tsonic/dotnet/System/internal/index.js";
|
|
21
21
|
|
|
22
|
-
export interface MemoryConfigurationProvider$instance extends ConfigurationProvider {
|
|
22
|
+
export interface MemoryConfigurationProvider$instance extends ConfigurationProvider, System_Collections_Generic_Internal.IEnumerable_1<KeyValuePair_2<System_Internal.String, System_Internal.String>> {
|
|
23
23
|
readonly __tsonic_type_Microsoft_Extensions_Configuration_Memory_MemoryConfigurationProvider: never;
|
|
24
24
|
|
|
25
25
|
readonly __tsonic_iface_Microsoft_Extensions_Configuration_IConfigurationProvider: never;
|
|
@@ -199,7 +199,7 @@ export const ActivatorUtilitiesConstructorAttribute: {
|
|
|
199
199
|
|
|
200
200
|
export type ActivatorUtilitiesConstructorAttribute = ActivatorUtilitiesConstructorAttribute$instance;
|
|
201
201
|
|
|
202
|
-
export interface DefaultServiceProviderFactory$instance {
|
|
202
|
+
export interface DefaultServiceProviderFactory$instance extends IServiceProviderFactory_1$instance<IServiceCollection> {
|
|
203
203
|
readonly __tsonic_type_Microsoft_Extensions_DependencyInjection_DefaultServiceProviderFactory: never;
|
|
204
204
|
|
|
205
205
|
readonly __tsonic_iface_Microsoft_Extensions_DependencyInjection_IServiceProviderFactory_1: never;
|
|
@@ -249,7 +249,6 @@ export interface ServiceCollection$instance extends IServiceCollection {
|
|
|
249
249
|
|
|
250
250
|
readonly Count: int;
|
|
251
251
|
readonly IsReadOnly: boolean;
|
|
252
|
-
[index: number]: ServiceDescriptor;
|
|
253
252
|
Clear(): void;
|
|
254
253
|
Contains(item: ServiceDescriptor): boolean;
|
|
255
254
|
CopyTo(array: ServiceDescriptor[], arrayIndex: int): void;
|
|
@@ -267,7 +266,7 @@ export const ServiceCollection: {
|
|
|
267
266
|
};
|
|
268
267
|
|
|
269
268
|
|
|
270
|
-
export type ServiceCollection = ServiceCollection$instance;
|
|
269
|
+
export type ServiceCollection = ServiceCollection$instance & { [index: number]: ServiceDescriptor; };
|
|
271
270
|
|
|
272
271
|
export interface ServiceDescriptor$instance {
|
|
273
272
|
readonly __tsonic_type_Microsoft_Extensions_DependencyInjection_ServiceDescriptor: never;
|
|
@@ -55,7 +55,6 @@ export interface StringSegment$instance {
|
|
|
55
55
|
|
|
56
56
|
readonly Buffer: string | undefined;
|
|
57
57
|
readonly HasValue: boolean;
|
|
58
|
-
readonly [index: number]: char;
|
|
59
58
|
readonly Length: int;
|
|
60
59
|
readonly Offset: int;
|
|
61
60
|
readonly Value: string | undefined;
|
|
@@ -100,7 +99,7 @@ export const StringSegment: {
|
|
|
100
99
|
};
|
|
101
100
|
|
|
102
101
|
|
|
103
|
-
export type StringSegment = StringSegment$instance;
|
|
102
|
+
export type StringSegment = StringSegment$instance & { readonly [index: number]: char; };
|
|
104
103
|
|
|
105
104
|
export interface StringTokenizer$instance {
|
|
106
105
|
readonly __tsonic_type_Microsoft_Extensions_Primitives_StringTokenizer: never;
|
|
@@ -153,7 +152,6 @@ export interface StringValues$instance {
|
|
|
153
152
|
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
154
153
|
|
|
155
154
|
readonly Count: int;
|
|
156
|
-
readonly [index: number]: string | undefined;
|
|
157
155
|
Equals(other: StringValues): boolean;
|
|
158
156
|
Equals(other: string): boolean;
|
|
159
157
|
Equals(other: string[]): boolean;
|
|
@@ -181,7 +179,7 @@ export const StringValues: {
|
|
|
181
179
|
};
|
|
182
180
|
|
|
183
181
|
|
|
184
|
-
export type StringValues = StringValues$instance;
|
|
182
|
+
export type StringValues = StringValues$instance & { readonly [index: number]: string | undefined; };
|
|
185
183
|
|
|
186
184
|
export interface StringValues_Enumerator$instance {
|
|
187
185
|
readonly __tsonic_type_Microsoft_Extensions_Primitives_StringValues_Enumerator: never;
|
|
@@ -171,7 +171,6 @@ export interface EventLogEntryCollection$instance {
|
|
|
171
171
|
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
172
172
|
|
|
173
173
|
readonly Count: int;
|
|
174
|
-
readonly [index: number]: EventLogEntry;
|
|
175
174
|
CopyTo(entries: EventLogEntry[], index: int): void;
|
|
176
175
|
GetEnumerator(): IEnumerator;
|
|
177
176
|
}
|
|
@@ -181,7 +180,7 @@ export const EventLogEntryCollection: {
|
|
|
181
180
|
};
|
|
182
181
|
|
|
183
182
|
|
|
184
|
-
export type EventLogEntryCollection = EventLogEntryCollection$instance;
|
|
183
|
+
export type EventLogEntryCollection = EventLogEntryCollection$instance & { readonly [index: number]: EventLogEntry; };
|
|
185
184
|
|
|
186
185
|
export interface EventLogTraceListener$instance extends TraceListener {
|
|
187
186
|
readonly __tsonic_type_System_Diagnostics_EventLogTraceListener: never;
|
|
@@ -36,7 +36,6 @@ export interface CryptographicAttributeObjectCollection$instance {
|
|
|
36
36
|
|
|
37
37
|
readonly Count: int;
|
|
38
38
|
readonly IsSynchronized: boolean;
|
|
39
|
-
readonly [index: number]: CryptographicAttributeObject;
|
|
40
39
|
readonly SyncRoot: unknown;
|
|
41
40
|
Add(asnEncodedData: AsnEncodedData): int;
|
|
42
41
|
Add(attribute: CryptographicAttributeObject): int;
|
|
@@ -52,7 +51,7 @@ export const CryptographicAttributeObjectCollection: {
|
|
|
52
51
|
};
|
|
53
52
|
|
|
54
53
|
|
|
55
|
-
export type CryptographicAttributeObjectCollection = CryptographicAttributeObjectCollection$instance;
|
|
54
|
+
export type CryptographicAttributeObjectCollection = CryptographicAttributeObjectCollection$instance & { readonly [index: number]: CryptographicAttributeObject; };
|
|
56
55
|
|
|
57
56
|
export interface CryptographicAttributeObjectEnumerator$instance {
|
|
58
57
|
readonly __tsonic_type_System_Security_Cryptography_CryptographicAttributeObjectEnumerator: never;
|
|
@@ -104,7 +104,6 @@ export interface CmsRecipientCollection$instance {
|
|
|
104
104
|
|
|
105
105
|
readonly Count: int;
|
|
106
106
|
readonly IsSynchronized: boolean;
|
|
107
|
-
readonly [index: number]: CmsRecipient;
|
|
108
107
|
readonly SyncRoot: unknown;
|
|
109
108
|
Add(recipient: CmsRecipient): int;
|
|
110
109
|
CopyTo(array: ClrArray, index: int): void;
|
|
@@ -121,7 +120,7 @@ export const CmsRecipientCollection: {
|
|
|
121
120
|
};
|
|
122
121
|
|
|
123
122
|
|
|
124
|
-
export type CmsRecipientCollection = CmsRecipientCollection$instance;
|
|
123
|
+
export type CmsRecipientCollection = CmsRecipientCollection$instance & { readonly [index: number]: CmsRecipient; };
|
|
125
124
|
|
|
126
125
|
export interface CmsRecipientEnumerator$instance {
|
|
127
126
|
readonly __tsonic_type_System_Security_Cryptography_Pkcs_CmsRecipientEnumerator: never;
|
|
@@ -600,7 +599,6 @@ export interface RecipientInfoCollection$instance {
|
|
|
600
599
|
|
|
601
600
|
readonly Count: int;
|
|
602
601
|
readonly IsSynchronized: boolean;
|
|
603
|
-
readonly [index: number]: RecipientInfo;
|
|
604
602
|
readonly SyncRoot: unknown;
|
|
605
603
|
CopyTo(array: ClrArray, index: int): void;
|
|
606
604
|
CopyTo(array: RecipientInfo[], index: int): void;
|
|
@@ -612,7 +610,7 @@ export const RecipientInfoCollection: {
|
|
|
612
610
|
};
|
|
613
611
|
|
|
614
612
|
|
|
615
|
-
export type RecipientInfoCollection = RecipientInfoCollection$instance;
|
|
613
|
+
export type RecipientInfoCollection = RecipientInfoCollection$instance & { readonly [index: number]: RecipientInfo; };
|
|
616
614
|
|
|
617
615
|
export interface RecipientInfoEnumerator$instance {
|
|
618
616
|
readonly __tsonic_type_System_Security_Cryptography_Pkcs_RecipientInfoEnumerator: never;
|
|
@@ -780,7 +778,6 @@ export interface SignerInfoCollection$instance {
|
|
|
780
778
|
|
|
781
779
|
readonly Count: int;
|
|
782
780
|
readonly IsSynchronized: boolean;
|
|
783
|
-
readonly [index: number]: SignerInfo;
|
|
784
781
|
readonly SyncRoot: unknown;
|
|
785
782
|
CopyTo(array: ClrArray, index: int): void;
|
|
786
783
|
CopyTo(array: SignerInfo[], index: int): void;
|
|
@@ -792,7 +789,7 @@ export const SignerInfoCollection: {
|
|
|
792
789
|
};
|
|
793
790
|
|
|
794
791
|
|
|
795
|
-
export type SignerInfoCollection = SignerInfoCollection$instance;
|
|
792
|
+
export type SignerInfoCollection = SignerInfoCollection$instance & { readonly [index: number]: SignerInfo; };
|
|
796
793
|
|
|
797
794
|
export interface SignerInfoEnumerator$instance {
|
|
798
795
|
readonly __tsonic_type_System_Security_Cryptography_Pkcs_SignerInfoEnumerator: never;
|
|
@@ -348,7 +348,6 @@ export interface EncryptionPropertyCollection$instance {
|
|
|
348
348
|
readonly IsFixedSize: boolean;
|
|
349
349
|
readonly IsReadOnly: boolean;
|
|
350
350
|
readonly IsSynchronized: boolean;
|
|
351
|
-
[index: number]: EncryptionProperty;
|
|
352
351
|
readonly SyncRoot: unknown;
|
|
353
352
|
Add(value: EncryptionProperty): int;
|
|
354
353
|
Clear(): void;
|
|
@@ -369,7 +368,7 @@ export const EncryptionPropertyCollection: {
|
|
|
369
368
|
};
|
|
370
369
|
|
|
371
370
|
|
|
372
|
-
export type EncryptionPropertyCollection = EncryptionPropertyCollection$instance;
|
|
371
|
+
export type EncryptionPropertyCollection = EncryptionPropertyCollection$instance & { [index: number]: EncryptionProperty; };
|
|
373
372
|
|
|
374
373
|
export interface KeyInfo$instance {
|
|
375
374
|
readonly __tsonic_type_System_Security_Cryptography_Xml_KeyInfo: never;
|
|
@@ -564,7 +563,6 @@ export interface ReferenceList$instance {
|
|
|
564
563
|
|
|
565
564
|
readonly Count: int;
|
|
566
565
|
readonly IsSynchronized: boolean;
|
|
567
|
-
[index: number]: EncryptedReference;
|
|
568
566
|
readonly SyncRoot: unknown;
|
|
569
567
|
Add(value: unknown): int;
|
|
570
568
|
Clear(): void;
|
|
@@ -584,7 +582,7 @@ export const ReferenceList: {
|
|
|
584
582
|
};
|
|
585
583
|
|
|
586
584
|
|
|
587
|
-
export type ReferenceList = ReferenceList$instance;
|
|
585
|
+
export type ReferenceList = ReferenceList$instance & { [index: number]: EncryptedReference; };
|
|
588
586
|
|
|
589
587
|
export interface RSAKeyValue$instance extends KeyInfoClause {
|
|
590
588
|
readonly __tsonic_type_System_Security_Cryptography_Xml_RSAKeyValue: never;
|
|
@@ -757,7 +755,6 @@ export interface TransformChain$instance {
|
|
|
757
755
|
readonly __tsonic_type_System_Security_Cryptography_Xml_TransformChain: never;
|
|
758
756
|
|
|
759
757
|
readonly Count: int;
|
|
760
|
-
readonly [index: number]: Transform;
|
|
761
758
|
Add(transform: Transform): void;
|
|
762
759
|
GetEnumerator(): IEnumerator;
|
|
763
760
|
}
|
|
@@ -768,7 +765,7 @@ export const TransformChain: {
|
|
|
768
765
|
};
|
|
769
766
|
|
|
770
767
|
|
|
771
|
-
export type TransformChain = TransformChain$instance;
|
|
768
|
+
export type TransformChain = TransformChain$instance & { readonly [index: number]: Transform; };
|
|
772
769
|
|
|
773
770
|
export interface XmlDecryptionTransform$instance extends Transform {
|
|
774
771
|
readonly __tsonic_type_System_Security_Cryptography_Xml_XmlDecryptionTransform: never;
|
package/package.json
CHANGED