@tsonic/microsoft-extensions 10.0.5 → 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.Distributed/internal/index.d.ts +21 -19
- package/Microsoft.Extensions.Caching.Hybrid/internal/index.d.ts +25 -21
- package/Microsoft.Extensions.Caching.Memory/internal/index.d.ts +41 -33
- package/Microsoft.Extensions.Configuration/internal/index.d.ts +98 -89
- package/Microsoft.Extensions.Configuration.CommandLine/internal/index.d.ts +13 -11
- package/Microsoft.Extensions.Configuration.EnvironmentVariables/internal/index.d.ts +9 -7
- package/Microsoft.Extensions.Configuration.Ini/internal/index.d.ts +16 -10
- package/Microsoft.Extensions.Configuration.Json/internal/index.d.ts +15 -9
- package/Microsoft.Extensions.Configuration.KeyPerFile/internal/index.d.ts +11 -11
- package/Microsoft.Extensions.Configuration.Memory/internal/index.d.ts +17 -17
- package/Microsoft.Extensions.Configuration.UserSecrets/internal/index.d.ts +6 -2
- package/Microsoft.Extensions.Configuration.Xml/internal/index.d.ts +19 -11
- package/Microsoft.Extensions.DependencyInjection/internal/index.d.ts +129 -118
- package/Microsoft.Extensions.DependencyInjection.Extensions/internal/index.d.ts +18 -18
- package/Microsoft.Extensions.Diagnostics.HealthChecks/internal/index.d.ts +47 -31
- package/Microsoft.Extensions.Diagnostics.Metrics/internal/index.d.ts +25 -19
- package/Microsoft.Extensions.Diagnostics.Metrics.Configuration/internal/index.d.ts +1 -1
- package/Microsoft.Extensions.FileProviders/internal/index.d.ts +39 -39
- package/Microsoft.Extensions.FileProviders.Composite/internal/index.d.ts +12 -12
- package/Microsoft.Extensions.FileProviders.Embedded/internal/index.d.ts +7 -7
- package/Microsoft.Extensions.FileProviders.Internal/internal/index.d.ts +11 -11
- package/Microsoft.Extensions.FileProviders.Physical/internal/index.d.ts +21 -15
- package/Microsoft.Extensions.FileSystemGlobbing/internal/index.d.ts +21 -13
- package/Microsoft.Extensions.FileSystemGlobbing.Abstractions/internal/index.d.ts +16 -6
- package/Microsoft.Extensions.FileSystemGlobbing.Internal/internal/index.d.ts +14 -10
- package/Microsoft.Extensions.FileSystemGlobbing.Internal.PathSegments/internal/index.d.ts +20 -20
- package/Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts/internal/index.d.ts +33 -15
- package/Microsoft.Extensions.FileSystemGlobbing.Internal.Patterns/internal/index.d.ts +4 -2
- package/Microsoft.Extensions.Hosting/internal/index.d.ts +53 -39
- package/Microsoft.Extensions.Hosting.Internal/internal/index.d.ts +13 -13
- package/Microsoft.Extensions.Http/internal/index.d.ts +14 -10
- package/Microsoft.Extensions.Http.Logging/internal/index.d.ts +13 -9
- package/Microsoft.Extensions.Internal/internal/index.d.ts +5 -5
- package/Microsoft.Extensions.Localization/internal/index.d.ts +31 -19
- package/Microsoft.Extensions.Logging/internal/index.d.ts +80 -66
- package/Microsoft.Extensions.Logging.Abstractions/internal/index.d.ts +28 -22
- package/Microsoft.Extensions.Logging.Configuration/internal/index.d.ts +4 -2
- package/Microsoft.Extensions.Logging.Console/internal/index.d.ts +24 -10
- package/Microsoft.Extensions.Logging.Debug/internal/index.d.ts +5 -5
- package/Microsoft.Extensions.Logging.EventLog/internal/index.d.ts +9 -7
- package/Microsoft.Extensions.Logging.EventSource/internal/index.d.ts +9 -7
- package/Microsoft.Extensions.Logging.TraceSource/internal/index.d.ts +6 -6
- package/Microsoft.Extensions.ObjectPool/internal/index.d.ts +23 -7
- package/Microsoft.Extensions.Options/internal/index.d.ts +168 -128
- package/Microsoft.Extensions.Primitives/internal/index.d.ts +40 -26
- package/Microsoft.Extensions.Validation/internal/index.d.ts +31 -21
- package/Microsoft.Extensions.WebEncoders/internal/index.d.ts +5 -3
- package/Microsoft.Extensions.WebEncoders.Testing/internal/index.d.ts +10 -4
- package/System.Diagnostics/internal/index.d.ts +25 -12
- package/System.Diagnostics.Eventing.Reader/internal/index.d.ts +120 -70
- package/System.Net.Http/internal/index.d.ts +3 -3
- package/System.Security.Cryptography/internal/index.d.ts +12 -7
- package/System.Security.Cryptography.Pkcs/internal/index.d.ts +150 -75
- package/System.Security.Cryptography.Xml/internal/index.d.ts +101 -22
- package/__internal/extensions/index.d.ts +614 -505
- package/package.json +3 -3
|
@@ -7,51 +7,51 @@ import type { sbyte, byte, short, ushort, int, uint, long, ulong, int128, uint12
|
|
|
7
7
|
|
|
8
8
|
// Import types from other namespaces
|
|
9
9
|
import type { IServiceCollection, ServiceDescriptor } from "../../Microsoft.Extensions.DependencyInjection/internal/index.js";
|
|
10
|
-
import type {
|
|
11
|
-
import * as System_Internal from "@tsonic/dotnet/System.js";
|
|
12
|
-
import type {
|
|
10
|
+
import type { IEnumerable_1 } from "@tsonic/dotnet/System.Collections.Generic/internal/index.js";
|
|
11
|
+
import * as System_Internal from "@tsonic/dotnet/System/internal/index.js";
|
|
12
|
+
import type { Func_2, Func_3, IServiceProvider, Object as ClrObject, Type, Void } from "@tsonic/dotnet/System/internal/index.js";
|
|
13
13
|
|
|
14
14
|
export abstract class ServiceCollectionDescriptorExtensions$instance {
|
|
15
15
|
static Add(collection: IServiceCollection, descriptor: ServiceDescriptor): IServiceCollection;
|
|
16
|
-
static Add(collection: IServiceCollection, descriptors:
|
|
16
|
+
static Add(collection: IServiceCollection, descriptors: IEnumerable_1<ServiceDescriptor>): IServiceCollection;
|
|
17
17
|
static RemoveAll(collection: IServiceCollection, serviceType: Type): IServiceCollection;
|
|
18
18
|
static RemoveAll<T>(collection: IServiceCollection): IServiceCollection;
|
|
19
19
|
static RemoveAllKeyed<T>(collection: IServiceCollection, serviceKey: unknown): IServiceCollection;
|
|
20
20
|
static RemoveAllKeyed(collection: IServiceCollection, serviceType: Type, serviceKey: unknown): IServiceCollection;
|
|
21
21
|
static Replace(collection: IServiceCollection, descriptor: ServiceDescriptor): IServiceCollection;
|
|
22
22
|
static TryAdd(collection: IServiceCollection, descriptor: ServiceDescriptor): void;
|
|
23
|
-
static TryAdd(collection: IServiceCollection, descriptors:
|
|
23
|
+
static TryAdd(collection: IServiceCollection, descriptors: IEnumerable_1<ServiceDescriptor>): void;
|
|
24
24
|
static TryAddEnumerable(services: IServiceCollection, descriptor: ServiceDescriptor): void;
|
|
25
|
-
static TryAddEnumerable(services: IServiceCollection, descriptors:
|
|
26
|
-
static TryAddKeyedScoped<TService>(services: IServiceCollection, serviceKey: unknown, implementationFactory:
|
|
25
|
+
static TryAddEnumerable(services: IServiceCollection, descriptors: IEnumerable_1<ServiceDescriptor>): void;
|
|
26
|
+
static TryAddKeyedScoped<TService>(services: IServiceCollection, serviceKey: unknown, implementationFactory: Func_3<IServiceProvider, unknown, TService>): void;
|
|
27
27
|
static TryAddKeyedScoped<TService>(collection: IServiceCollection, serviceKey: unknown): void;
|
|
28
|
-
static TryAddKeyedScoped(collection: IServiceCollection, service: Type, serviceKey: unknown, implementationFactory:
|
|
28
|
+
static TryAddKeyedScoped(collection: IServiceCollection, service: Type, serviceKey: unknown, implementationFactory: Func_3<IServiceProvider, unknown, unknown>): void;
|
|
29
29
|
static TryAddKeyedScoped(collection: IServiceCollection, service: Type, serviceKey: unknown, implementationType: Type): void;
|
|
30
30
|
static TryAddKeyedScoped(collection: IServiceCollection, service: Type, serviceKey: unknown): void;
|
|
31
|
-
static TryAddKeyedSingleton<TService>(services: IServiceCollection, serviceKey: unknown, implementationFactory:
|
|
31
|
+
static TryAddKeyedSingleton<TService>(services: IServiceCollection, serviceKey: unknown, implementationFactory: Func_3<IServiceProvider, unknown, TService>): void;
|
|
32
32
|
static TryAddKeyedSingleton<TService>(collection: IServiceCollection, serviceKey: unknown, instance: TService): void;
|
|
33
33
|
static TryAddKeyedSingleton<TService>(collection: IServiceCollection, serviceKey: unknown): void;
|
|
34
|
-
static TryAddKeyedSingleton(collection: IServiceCollection, service: Type, serviceKey: unknown, implementationFactory:
|
|
34
|
+
static TryAddKeyedSingleton(collection: IServiceCollection, service: Type, serviceKey: unknown, implementationFactory: Func_3<IServiceProvider, unknown, unknown>): void;
|
|
35
35
|
static TryAddKeyedSingleton(collection: IServiceCollection, service: Type, serviceKey: unknown, implementationType: Type): void;
|
|
36
36
|
static TryAddKeyedSingleton(collection: IServiceCollection, service: Type, serviceKey: unknown): void;
|
|
37
|
-
static TryAddKeyedTransient<TService>(services: IServiceCollection, serviceKey: unknown, implementationFactory:
|
|
37
|
+
static TryAddKeyedTransient<TService>(services: IServiceCollection, serviceKey: unknown, implementationFactory: Func_3<IServiceProvider, unknown, TService>): void;
|
|
38
38
|
static TryAddKeyedTransient<TService>(collection: IServiceCollection, serviceKey: unknown): void;
|
|
39
|
-
static TryAddKeyedTransient(collection: IServiceCollection, service: Type, serviceKey: unknown, implementationFactory:
|
|
39
|
+
static TryAddKeyedTransient(collection: IServiceCollection, service: Type, serviceKey: unknown, implementationFactory: Func_3<IServiceProvider, unknown, unknown>): void;
|
|
40
40
|
static TryAddKeyedTransient(collection: IServiceCollection, service: Type, serviceKey: unknown, implementationType: Type): void;
|
|
41
41
|
static TryAddKeyedTransient(collection: IServiceCollection, service: Type, serviceKey: unknown): void;
|
|
42
|
-
static TryAddScoped<TService>(services: IServiceCollection, implementationFactory:
|
|
43
|
-
static TryAddScoped(collection: IServiceCollection, service: Type, implementationFactory:
|
|
42
|
+
static TryAddScoped<TService>(services: IServiceCollection, implementationFactory: Func_2<IServiceProvider, TService>): void;
|
|
43
|
+
static TryAddScoped(collection: IServiceCollection, service: Type, implementationFactory: Func_2<IServiceProvider, unknown>): void;
|
|
44
44
|
static TryAddScoped(collection: IServiceCollection, service: Type, implementationType: Type): void;
|
|
45
45
|
static TryAddScoped(collection: IServiceCollection, service: Type): void;
|
|
46
46
|
static TryAddScoped<TService>(collection: IServiceCollection): void;
|
|
47
|
-
static TryAddSingleton<TService>(services: IServiceCollection, implementationFactory:
|
|
48
|
-
static TryAddSingleton(collection: IServiceCollection, service: Type, implementationFactory:
|
|
47
|
+
static TryAddSingleton<TService>(services: IServiceCollection, implementationFactory: Func_2<IServiceProvider, TService>): void;
|
|
48
|
+
static TryAddSingleton(collection: IServiceCollection, service: Type, implementationFactory: Func_2<IServiceProvider, unknown>): void;
|
|
49
49
|
static TryAddSingleton(collection: IServiceCollection, service: Type, implementationType: Type): void;
|
|
50
50
|
static TryAddSingleton(collection: IServiceCollection, service: Type): void;
|
|
51
51
|
static TryAddSingleton<TService>(collection: IServiceCollection, instance: TService): void;
|
|
52
52
|
static TryAddSingleton<TService>(collection: IServiceCollection): void;
|
|
53
|
-
static TryAddTransient<TService>(services: IServiceCollection, implementationFactory:
|
|
54
|
-
static TryAddTransient(collection: IServiceCollection, service: Type, implementationFactory:
|
|
53
|
+
static TryAddTransient<TService>(services: IServiceCollection, implementationFactory: Func_2<IServiceProvider, TService>): void;
|
|
54
|
+
static TryAddTransient(collection: IServiceCollection, service: Type, implementationFactory: Func_2<IServiceProvider, unknown>): void;
|
|
55
55
|
static TryAddTransient(collection: IServiceCollection, service: Type, implementationType: Type): void;
|
|
56
56
|
static TryAddTransient(collection: IServiceCollection, service: Type): void;
|
|
57
57
|
static TryAddTransient<TService>(collection: IServiceCollection): void;
|
|
@@ -6,11 +6,11 @@
|
|
|
6
6
|
import type { sbyte, byte, short, ushort, int, uint, long, ulong, int128, uint128, half, float, double, decimal, nint, nuint, char } from '@tsonic/core/types.js';
|
|
7
7
|
|
|
8
8
|
// Import types from other namespaces
|
|
9
|
-
import type {
|
|
10
|
-
import
|
|
11
|
-
import type {
|
|
12
|
-
import
|
|
13
|
-
import type {
|
|
9
|
+
import type { ICollection_1, IEnumerable_1, IReadOnlyDictionary_2, ISet_1 } from "@tsonic/dotnet/System.Collections.Generic/internal/index.js";
|
|
10
|
+
import type { Task, Task_1 } from "@tsonic/dotnet/System.Threading.Tasks/internal/index.js";
|
|
11
|
+
import type { CancellationToken } from "@tsonic/dotnet/System.Threading/internal/index.js";
|
|
12
|
+
import * as System_Internal from "@tsonic/dotnet/System/internal/index.js";
|
|
13
|
+
import type { Boolean as ClrBoolean, Enum, Exception, Func_2, IComparable, IConvertible, IFormattable, Int32, IServiceProvider, ISpanFormattable, Nullable_1, Object as ClrObject, String as ClrString, TimeSpan, ValueType } from "@tsonic/dotnet/System/internal/index.js";
|
|
14
14
|
|
|
15
15
|
export enum HealthStatus {
|
|
16
16
|
Unhealthy = 0,
|
|
@@ -22,7 +22,7 @@ export enum HealthStatus {
|
|
|
22
22
|
export interface IHealthCheck$instance {
|
|
23
23
|
readonly __tsonic_iface_Microsoft_Extensions_Diagnostics_HealthChecks_IHealthCheck: never;
|
|
24
24
|
|
|
25
|
-
CheckHealthAsync(context: HealthCheckContext, cancellationToken?: CancellationToken):
|
|
25
|
+
CheckHealthAsync(context: HealthCheckContext, cancellationToken?: CancellationToken): Task_1<HealthCheckResult>;
|
|
26
26
|
}
|
|
27
27
|
|
|
28
28
|
|
|
@@ -38,7 +38,9 @@ export interface IHealthCheckPublisher$instance {
|
|
|
38
38
|
export type IHealthCheckPublisher = IHealthCheckPublisher$instance;
|
|
39
39
|
|
|
40
40
|
export interface HealthCheckResult$instance {
|
|
41
|
-
readonly
|
|
41
|
+
readonly __tsonic_type_Microsoft_Extensions_Diagnostics_HealthChecks_HealthCheckResult: never;
|
|
42
|
+
|
|
43
|
+
readonly Data: IReadOnlyDictionary_2<System_Internal.String, unknown>;
|
|
42
44
|
readonly Description: string | undefined;
|
|
43
45
|
readonly Exception: Exception | undefined;
|
|
44
46
|
readonly Status: HealthStatus;
|
|
@@ -46,34 +48,38 @@ export interface HealthCheckResult$instance {
|
|
|
46
48
|
|
|
47
49
|
|
|
48
50
|
export const HealthCheckResult: {
|
|
49
|
-
new(status: HealthStatus, description: string, exception: Exception, data:
|
|
50
|
-
Degraded(description?: string, exception?: Exception, data?:
|
|
51
|
-
Healthy(description?: string, data?:
|
|
52
|
-
Unhealthy(description?: string, exception?: Exception, data?:
|
|
51
|
+
new(status: HealthStatus, description: string, exception: Exception, data: IReadOnlyDictionary_2<System_Internal.String, unknown>): HealthCheckResult;
|
|
52
|
+
Degraded(description?: string, exception?: Exception, data?: IReadOnlyDictionary_2<System_Internal.String, unknown>): HealthCheckResult;
|
|
53
|
+
Healthy(description?: string, data?: IReadOnlyDictionary_2<System_Internal.String, unknown>): HealthCheckResult;
|
|
54
|
+
Unhealthy(description?: string, exception?: Exception, data?: IReadOnlyDictionary_2<System_Internal.String, unknown>): HealthCheckResult;
|
|
53
55
|
};
|
|
54
56
|
|
|
55
57
|
|
|
56
58
|
export type HealthCheckResult = HealthCheckResult$instance;
|
|
57
59
|
|
|
58
60
|
export interface HealthReportEntry$instance {
|
|
59
|
-
readonly
|
|
61
|
+
readonly __tsonic_type_Microsoft_Extensions_Diagnostics_HealthChecks_HealthReportEntry: never;
|
|
62
|
+
|
|
63
|
+
readonly Data: IReadOnlyDictionary_2<System_Internal.String, unknown>;
|
|
60
64
|
readonly Description: string | undefined;
|
|
61
65
|
readonly Duration: TimeSpan;
|
|
62
66
|
readonly Exception: Exception | undefined;
|
|
63
67
|
readonly Status: HealthStatus;
|
|
64
|
-
readonly Tags:
|
|
68
|
+
readonly Tags: IEnumerable_1<System_Internal.String>;
|
|
65
69
|
}
|
|
66
70
|
|
|
67
71
|
|
|
68
72
|
export const HealthReportEntry: {
|
|
69
|
-
new(status: HealthStatus, description: string, duration: TimeSpan, exception: Exception, data:
|
|
70
|
-
new(status: HealthStatus, description: string, duration: TimeSpan, exception: Exception, data:
|
|
73
|
+
new(status: HealthStatus, description: string, duration: TimeSpan, exception: Exception, data: IReadOnlyDictionary_2<System_Internal.String, unknown>): HealthReportEntry;
|
|
74
|
+
new(status: HealthStatus, description: string, duration: TimeSpan, exception: Exception, data: IReadOnlyDictionary_2<System_Internal.String, unknown>, tags: IEnumerable_1<System_Internal.String>): HealthReportEntry;
|
|
71
75
|
};
|
|
72
76
|
|
|
73
77
|
|
|
74
78
|
export type HealthReportEntry = HealthReportEntry$instance;
|
|
75
79
|
|
|
76
80
|
export interface HealthCheckContext$instance {
|
|
81
|
+
readonly __tsonic_type_Microsoft_Extensions_Diagnostics_HealthChecks_HealthCheckContext: never;
|
|
82
|
+
|
|
77
83
|
Registration: HealthCheckRegistration;
|
|
78
84
|
}
|
|
79
85
|
|
|
@@ -86,10 +92,12 @@ export const HealthCheckContext: {
|
|
|
86
92
|
export type HealthCheckContext = HealthCheckContext$instance;
|
|
87
93
|
|
|
88
94
|
export interface HealthCheckPublisherOptions$instance {
|
|
95
|
+
readonly __tsonic_type_Microsoft_Extensions_Diagnostics_HealthChecks_HealthCheckPublisherOptions: never;
|
|
96
|
+
|
|
89
97
|
Delay: TimeSpan;
|
|
90
98
|
Period: TimeSpan;
|
|
91
|
-
get Predicate():
|
|
92
|
-
set Predicate(value:
|
|
99
|
+
get Predicate(): Func_2<HealthCheckRegistration, System_Internal.Boolean> | undefined;
|
|
100
|
+
set Predicate(value: Func_2<HealthCheckRegistration, System_Internal.Boolean> | undefined);
|
|
93
101
|
Timeout: TimeSpan;
|
|
94
102
|
}
|
|
95
103
|
|
|
@@ -102,29 +110,33 @@ export const HealthCheckPublisherOptions: {
|
|
|
102
110
|
export type HealthCheckPublisherOptions = HealthCheckPublisherOptions$instance;
|
|
103
111
|
|
|
104
112
|
export interface HealthCheckRegistration$instance {
|
|
105
|
-
|
|
106
|
-
|
|
113
|
+
readonly __tsonic_type_Microsoft_Extensions_Diagnostics_HealthChecks_HealthCheckRegistration: never;
|
|
114
|
+
|
|
115
|
+
Delay: Nullable_1<TimeSpan>;
|
|
116
|
+
Factory: Func_2<IServiceProvider, IHealthCheck>;
|
|
107
117
|
FailureStatus: HealthStatus;
|
|
108
118
|
Name: string;
|
|
109
|
-
Period:
|
|
110
|
-
readonly Tags:
|
|
119
|
+
Period: Nullable_1<TimeSpan>;
|
|
120
|
+
readonly Tags: ISet_1<System_Internal.String>;
|
|
111
121
|
Timeout: TimeSpan;
|
|
112
122
|
}
|
|
113
123
|
|
|
114
124
|
|
|
115
125
|
export const HealthCheckRegistration: {
|
|
116
|
-
new(name: string, instance: IHealthCheck, failureStatus:
|
|
117
|
-
new(name: string, instance: IHealthCheck, failureStatus:
|
|
118
|
-
new(name: string, factory:
|
|
119
|
-
new(name: string, factory:
|
|
126
|
+
new(name: string, instance: IHealthCheck, failureStatus: Nullable_1<HealthStatus>, tags: IEnumerable_1<System_Internal.String>): HealthCheckRegistration;
|
|
127
|
+
new(name: string, instance: IHealthCheck, failureStatus: Nullable_1<HealthStatus>, tags: IEnumerable_1<System_Internal.String>, timeout: Nullable_1<TimeSpan>): HealthCheckRegistration;
|
|
128
|
+
new(name: string, factory: Func_2<IServiceProvider, IHealthCheck>, failureStatus: Nullable_1<HealthStatus>, tags: IEnumerable_1<System_Internal.String>): HealthCheckRegistration;
|
|
129
|
+
new(name: string, factory: Func_2<IServiceProvider, IHealthCheck>, failureStatus: Nullable_1<HealthStatus>, tags: IEnumerable_1<System_Internal.String>, timeout: Nullable_1<TimeSpan>): HealthCheckRegistration;
|
|
120
130
|
};
|
|
121
131
|
|
|
122
132
|
|
|
123
133
|
export type HealthCheckRegistration = HealthCheckRegistration$instance;
|
|
124
134
|
|
|
125
135
|
export interface HealthCheckService$instance {
|
|
126
|
-
|
|
127
|
-
|
|
136
|
+
readonly __tsonic_type_Microsoft_Extensions_Diagnostics_HealthChecks_HealthCheckService: never;
|
|
137
|
+
|
|
138
|
+
CheckHealthAsync(cancellationToken?: CancellationToken): Task_1<HealthReport>;
|
|
139
|
+
CheckHealthAsync(predicate: Func_2<HealthCheckRegistration, System_Internal.Boolean>, cancellationToken?: CancellationToken): Task_1<HealthReport>;
|
|
128
140
|
}
|
|
129
141
|
|
|
130
142
|
|
|
@@ -135,7 +147,9 @@ export const HealthCheckService: (abstract new() => HealthCheckService) & {
|
|
|
135
147
|
export type HealthCheckService = HealthCheckService$instance;
|
|
136
148
|
|
|
137
149
|
export interface HealthCheckServiceOptions$instance {
|
|
138
|
-
readonly
|
|
150
|
+
readonly __tsonic_type_Microsoft_Extensions_Diagnostics_HealthChecks_HealthCheckServiceOptions: never;
|
|
151
|
+
|
|
152
|
+
readonly Registrations: ICollection_1<HealthCheckRegistration>;
|
|
139
153
|
}
|
|
140
154
|
|
|
141
155
|
|
|
@@ -147,15 +161,17 @@ export const HealthCheckServiceOptions: {
|
|
|
147
161
|
export type HealthCheckServiceOptions = HealthCheckServiceOptions$instance;
|
|
148
162
|
|
|
149
163
|
export interface HealthReport$instance {
|
|
150
|
-
readonly
|
|
164
|
+
readonly __tsonic_type_Microsoft_Extensions_Diagnostics_HealthChecks_HealthReport: never;
|
|
165
|
+
|
|
166
|
+
readonly Entries: IReadOnlyDictionary_2<System_Internal.String, HealthReportEntry>;
|
|
151
167
|
readonly Status: HealthStatus;
|
|
152
168
|
readonly TotalDuration: TimeSpan;
|
|
153
169
|
}
|
|
154
170
|
|
|
155
171
|
|
|
156
172
|
export const HealthReport: {
|
|
157
|
-
new(entries:
|
|
158
|
-
new(entries:
|
|
173
|
+
new(entries: IReadOnlyDictionary_2<System_Internal.String, HealthReportEntry>, totalDuration: TimeSpan): HealthReport;
|
|
174
|
+
new(entries: IReadOnlyDictionary_2<System_Internal.String, HealthReportEntry>, status: HealthStatus, totalDuration: TimeSpan): HealthReport;
|
|
159
175
|
};
|
|
160
176
|
|
|
161
177
|
|
|
@@ -11,10 +11,10 @@ import type { ptr } from "@tsonic/core/types.js";
|
|
|
11
11
|
// Import types from other namespaces
|
|
12
12
|
import type { IConfiguration } from "../../Microsoft.Extensions.Configuration/internal/index.js";
|
|
13
13
|
import type { IServiceCollection } from "../../Microsoft.Extensions.DependencyInjection/internal/index.js";
|
|
14
|
-
import type {
|
|
15
|
-
import type { Instrument,
|
|
16
|
-
import * as System_Internal from "@tsonic/dotnet/System.js";
|
|
17
|
-
import type { Boolean as ClrBoolean, Byte, Decimal, Double, Enum, IComparable, IConvertible, IFormattable, Int16, Int32, Int64, ISpanFormattable, Object as ClrObject, Single, String as ClrString, Void } from "@tsonic/dotnet/System.js";
|
|
14
|
+
import type { IList_1 } from "@tsonic/dotnet/System.Collections.Generic/internal/index.js";
|
|
15
|
+
import type { Instrument, MeasurementCallback_1 } from "@tsonic/dotnet/System.Diagnostics.Metrics/internal/index.js";
|
|
16
|
+
import * as System_Internal from "@tsonic/dotnet/System/internal/index.js";
|
|
17
|
+
import type { Boolean as ClrBoolean, Byte, Decimal, Double, Enum, IComparable, IConvertible, IFormattable, Int16, Int32, Int64, ISpanFormattable, Object as ClrObject, Single, String as ClrString, Void } from "@tsonic/dotnet/System/internal/index.js";
|
|
18
18
|
|
|
19
19
|
export enum MeterScope {
|
|
20
20
|
None = 0,
|
|
@@ -55,6 +55,8 @@ export interface IObservableInstrumentsSource$instance {
|
|
|
55
55
|
export type IObservableInstrumentsSource = IObservableInstrumentsSource$instance;
|
|
56
56
|
|
|
57
57
|
export interface InstrumentRule$instance {
|
|
58
|
+
readonly __tsonic_type_Microsoft_Extensions_Diagnostics_Metrics_InstrumentRule: never;
|
|
59
|
+
|
|
58
60
|
readonly Enable: boolean;
|
|
59
61
|
readonly InstrumentName: string | undefined;
|
|
60
62
|
readonly ListenerName: string | undefined;
|
|
@@ -71,20 +73,22 @@ export const InstrumentRule: {
|
|
|
71
73
|
export type InstrumentRule = InstrumentRule$instance;
|
|
72
74
|
|
|
73
75
|
export interface MeasurementHandlers$instance {
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
get
|
|
77
|
-
set
|
|
78
|
-
get
|
|
79
|
-
set
|
|
80
|
-
get
|
|
81
|
-
set
|
|
82
|
-
get
|
|
83
|
-
set
|
|
84
|
-
get
|
|
85
|
-
set
|
|
86
|
-
get
|
|
87
|
-
set
|
|
76
|
+
readonly __tsonic_type_Microsoft_Extensions_Diagnostics_Metrics_MeasurementHandlers: never;
|
|
77
|
+
|
|
78
|
+
get ByteHandler(): MeasurementCallback_1<System_Internal.Byte> | undefined;
|
|
79
|
+
set ByteHandler(value: MeasurementCallback_1<System_Internal.Byte> | undefined);
|
|
80
|
+
get DecimalHandler(): MeasurementCallback_1<System_Internal.Decimal> | undefined;
|
|
81
|
+
set DecimalHandler(value: MeasurementCallback_1<System_Internal.Decimal> | undefined);
|
|
82
|
+
get DoubleHandler(): MeasurementCallback_1<System_Internal.Double> | undefined;
|
|
83
|
+
set DoubleHandler(value: MeasurementCallback_1<System_Internal.Double> | undefined);
|
|
84
|
+
get FloatHandler(): MeasurementCallback_1<System_Internal.Single> | undefined;
|
|
85
|
+
set FloatHandler(value: MeasurementCallback_1<System_Internal.Single> | undefined);
|
|
86
|
+
get IntHandler(): MeasurementCallback_1<System_Internal.Int32> | undefined;
|
|
87
|
+
set IntHandler(value: MeasurementCallback_1<System_Internal.Int32> | undefined);
|
|
88
|
+
get LongHandler(): MeasurementCallback_1<System_Internal.Int64> | undefined;
|
|
89
|
+
set LongHandler(value: MeasurementCallback_1<System_Internal.Int64> | undefined);
|
|
90
|
+
get ShortHandler(): MeasurementCallback_1<System_Internal.Int16> | undefined;
|
|
91
|
+
set ShortHandler(value: MeasurementCallback_1<System_Internal.Int16> | undefined);
|
|
88
92
|
}
|
|
89
93
|
|
|
90
94
|
|
|
@@ -96,7 +100,9 @@ export const MeasurementHandlers: {
|
|
|
96
100
|
export type MeasurementHandlers = MeasurementHandlers$instance;
|
|
97
101
|
|
|
98
102
|
export interface MetricsOptions$instance {
|
|
99
|
-
readonly
|
|
103
|
+
readonly __tsonic_type_Microsoft_Extensions_Diagnostics_Metrics_MetricsOptions: never;
|
|
104
|
+
|
|
105
|
+
readonly Rules: IList_1<InstrumentRule>;
|
|
100
106
|
}
|
|
101
107
|
|
|
102
108
|
|
|
@@ -8,7 +8,7 @@ import type { sbyte, byte, short, ushort, int, uint, long, ulong, int128, uint12
|
|
|
8
8
|
// Import types from other namespaces
|
|
9
9
|
import * as System_Internal from "@tsonic/dotnet/System.js";
|
|
10
10
|
import type { IConfiguration } from "../../Microsoft.Extensions.Configuration/internal/index.js";
|
|
11
|
-
import type { String as ClrString } from "@tsonic/dotnet/System.js";
|
|
11
|
+
import type { String as ClrString } from "@tsonic/dotnet/System/internal/index.js";
|
|
12
12
|
|
|
13
13
|
export interface IMetricListenerConfigurationFactory$instance {
|
|
14
14
|
readonly __tsonic_iface_Microsoft_Extensions_Diagnostics_Metrics_Configuration_IMetricListenerConfigurationFactory: never;
|
|
@@ -9,23 +9,23 @@ import type { sbyte, byte, short, ushort, int, uint, long, ulong, int128, uint12
|
|
|
9
9
|
import type { ExclusionFilters } from "../../Microsoft.Extensions.FileProviders.Physical/internal/index.js";
|
|
10
10
|
import * as Microsoft_Extensions_Primitives_Internal from "../../Microsoft.Extensions.Primitives/internal/index.js";
|
|
11
11
|
import type { IChangeToken } from "../../Microsoft.Extensions.Primitives/internal/index.js";
|
|
12
|
-
import * as System_Collections_Generic_Internal from "@tsonic/dotnet/System.Collections.Generic.js";
|
|
13
|
-
import type {
|
|
14
|
-
import * as System_Collections_Internal from "@tsonic/dotnet/System.Collections.js";
|
|
15
|
-
import type { IEnumerable } from "@tsonic/dotnet/System.Collections.js";
|
|
16
|
-
import type { Stream } from "@tsonic/dotnet/System.IO.js";
|
|
17
|
-
import
|
|
18
|
-
import
|
|
19
|
-
import type {
|
|
20
|
-
|
|
21
|
-
export interface IDirectoryContents$instance extends
|
|
12
|
+
import * as System_Collections_Generic_Internal from "@tsonic/dotnet/System.Collections.Generic/internal/index.js";
|
|
13
|
+
import type { IEnumerable_1, IEnumerator_1 } from "@tsonic/dotnet/System.Collections.Generic/internal/index.js";
|
|
14
|
+
import * as System_Collections_Internal from "@tsonic/dotnet/System.Collections/internal/index.js";
|
|
15
|
+
import type { IEnumerable } from "@tsonic/dotnet/System.Collections/internal/index.js";
|
|
16
|
+
import type { Stream } from "@tsonic/dotnet/System.IO/internal/index.js";
|
|
17
|
+
import type { Assembly } from "@tsonic/dotnet/System.Reflection/internal/index.js";
|
|
18
|
+
import * as System_Internal from "@tsonic/dotnet/System/internal/index.js";
|
|
19
|
+
import type { Action_1, Boolean as ClrBoolean, DateTimeOffset, IDisposable, Int64, Object as ClrObject, String as ClrString, Void } from "@tsonic/dotnet/System/internal/index.js";
|
|
20
|
+
|
|
21
|
+
export interface IDirectoryContents$instance extends IEnumerable_1<IFileInfo>, IEnumerable {
|
|
22
22
|
readonly __tsonic_iface_Microsoft_Extensions_FileProviders_IDirectoryContents: never;
|
|
23
23
|
|
|
24
24
|
readonly Exists: boolean;
|
|
25
25
|
}
|
|
26
26
|
|
|
27
27
|
|
|
28
|
-
export interface IDirectoryContents$instance extends System_Collections_Generic_Internal.
|
|
28
|
+
export interface IDirectoryContents$instance extends System_Collections_Generic_Internal.IEnumerable_1<IFileInfo> {}
|
|
29
29
|
|
|
30
30
|
export type IDirectoryContents = IDirectoryContents$instance;
|
|
31
31
|
|
|
@@ -55,10 +55,12 @@ export interface IFileProvider$instance {
|
|
|
55
55
|
|
|
56
56
|
export type IFileProvider = IFileProvider$instance;
|
|
57
57
|
|
|
58
|
-
export interface CompositeFileProvider$instance {
|
|
58
|
+
export interface CompositeFileProvider$instance extends IFileProvider$instance {
|
|
59
|
+
readonly __tsonic_type_Microsoft_Extensions_FileProviders_CompositeFileProvider: never;
|
|
60
|
+
|
|
59
61
|
readonly __tsonic_iface_Microsoft_Extensions_FileProviders_IFileProvider: never;
|
|
60
62
|
|
|
61
|
-
readonly FileProviders:
|
|
63
|
+
readonly FileProviders: IEnumerable_1<IFileProvider>;
|
|
62
64
|
GetDirectoryContents(subpath: string): IDirectoryContents;
|
|
63
65
|
GetFileInfo(subpath: string): IFileInfo;
|
|
64
66
|
Watch(pattern: string): IChangeToken;
|
|
@@ -67,7 +69,7 @@ export interface CompositeFileProvider$instance {
|
|
|
67
69
|
|
|
68
70
|
export const CompositeFileProvider: {
|
|
69
71
|
new(fileProviders: IFileProvider[]): CompositeFileProvider;
|
|
70
|
-
new(fileProviders:
|
|
72
|
+
new(fileProviders: IEnumerable_1<IFileProvider>): CompositeFileProvider;
|
|
71
73
|
};
|
|
72
74
|
|
|
73
75
|
|
|
@@ -75,12 +77,12 @@ export interface __CompositeFileProvider$views {
|
|
|
75
77
|
As_IFileProvider(): IFileProvider$instance;
|
|
76
78
|
}
|
|
77
79
|
|
|
78
|
-
export interface CompositeFileProvider$instance extends IFileProvider$instance {}
|
|
79
|
-
|
|
80
80
|
export type CompositeFileProvider = CompositeFileProvider$instance & __CompositeFileProvider$views;
|
|
81
81
|
|
|
82
82
|
|
|
83
|
-
export interface EmbeddedFileProvider$instance {
|
|
83
|
+
export interface EmbeddedFileProvider$instance extends IFileProvider$instance {
|
|
84
|
+
readonly __tsonic_type_Microsoft_Extensions_FileProviders_EmbeddedFileProvider: never;
|
|
85
|
+
|
|
84
86
|
readonly __tsonic_iface_Microsoft_Extensions_FileProviders_IFileProvider: never;
|
|
85
87
|
|
|
86
88
|
GetDirectoryContents(subpath: string): IDirectoryContents;
|
|
@@ -99,12 +101,12 @@ export interface __EmbeddedFileProvider$views {
|
|
|
99
101
|
As_IFileProvider(): IFileProvider$instance;
|
|
100
102
|
}
|
|
101
103
|
|
|
102
|
-
export interface EmbeddedFileProvider$instance extends IFileProvider$instance {}
|
|
103
|
-
|
|
104
104
|
export type EmbeddedFileProvider = EmbeddedFileProvider$instance & __EmbeddedFileProvider$views;
|
|
105
105
|
|
|
106
106
|
|
|
107
|
-
export interface ManifestEmbeddedFileProvider$instance {
|
|
107
|
+
export interface ManifestEmbeddedFileProvider$instance extends IFileProvider$instance {
|
|
108
|
+
readonly __tsonic_type_Microsoft_Extensions_FileProviders_ManifestEmbeddedFileProvider: never;
|
|
109
|
+
|
|
108
110
|
readonly __tsonic_iface_Microsoft_Extensions_FileProviders_IFileProvider: never;
|
|
109
111
|
|
|
110
112
|
readonly Assembly: Assembly;
|
|
@@ -126,18 +128,18 @@ export interface __ManifestEmbeddedFileProvider$views {
|
|
|
126
128
|
As_IFileProvider(): IFileProvider$instance;
|
|
127
129
|
}
|
|
128
130
|
|
|
129
|
-
export interface ManifestEmbeddedFileProvider$instance extends IFileProvider$instance {}
|
|
130
|
-
|
|
131
131
|
export type ManifestEmbeddedFileProvider = ManifestEmbeddedFileProvider$instance & __ManifestEmbeddedFileProvider$views;
|
|
132
132
|
|
|
133
133
|
|
|
134
|
-
export interface NotFoundDirectoryContents$instance {
|
|
134
|
+
export interface NotFoundDirectoryContents$instance extends IDirectoryContents$instance {
|
|
135
|
+
readonly __tsonic_type_Microsoft_Extensions_FileProviders_NotFoundDirectoryContents: never;
|
|
136
|
+
|
|
135
137
|
readonly __tsonic_iface_Microsoft_Extensions_FileProviders_IDirectoryContents: never;
|
|
136
138
|
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
137
139
|
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
138
140
|
|
|
139
141
|
readonly Exists: boolean;
|
|
140
|
-
GetEnumerator():
|
|
142
|
+
GetEnumerator(): IEnumerator_1<IFileInfo>;
|
|
141
143
|
}
|
|
142
144
|
|
|
143
145
|
|
|
@@ -151,12 +153,12 @@ export interface __NotFoundDirectoryContents$views {
|
|
|
151
153
|
As_IDirectoryContents(): IDirectoryContents$instance;
|
|
152
154
|
}
|
|
153
155
|
|
|
154
|
-
export interface NotFoundDirectoryContents$instance extends IDirectoryContents$instance {}
|
|
155
|
-
|
|
156
156
|
export type NotFoundDirectoryContents = NotFoundDirectoryContents$instance & __NotFoundDirectoryContents$views;
|
|
157
157
|
|
|
158
158
|
|
|
159
|
-
export interface NotFoundFileInfo$instance {
|
|
159
|
+
export interface NotFoundFileInfo$instance extends IFileInfo$instance {
|
|
160
|
+
readonly __tsonic_type_Microsoft_Extensions_FileProviders_NotFoundFileInfo: never;
|
|
161
|
+
|
|
160
162
|
readonly __tsonic_iface_Microsoft_Extensions_FileProviders_IFileInfo: never;
|
|
161
163
|
|
|
162
164
|
readonly Exists: boolean;
|
|
@@ -178,17 +180,17 @@ export interface __NotFoundFileInfo$views {
|
|
|
178
180
|
As_IFileInfo(): IFileInfo$instance;
|
|
179
181
|
}
|
|
180
182
|
|
|
181
|
-
export interface NotFoundFileInfo$instance extends IFileInfo$instance {}
|
|
182
|
-
|
|
183
183
|
export type NotFoundFileInfo = NotFoundFileInfo$instance & __NotFoundFileInfo$views;
|
|
184
184
|
|
|
185
185
|
|
|
186
|
-
export interface NullChangeToken$instance {
|
|
186
|
+
export interface NullChangeToken$instance extends Microsoft_Extensions_Primitives_Internal.IChangeToken$instance {
|
|
187
|
+
readonly __tsonic_type_Microsoft_Extensions_FileProviders_NullChangeToken: never;
|
|
188
|
+
|
|
187
189
|
readonly __tsonic_iface_Microsoft_Extensions_Primitives_IChangeToken: never;
|
|
188
190
|
|
|
189
191
|
readonly ActiveChangeCallbacks: boolean;
|
|
190
192
|
readonly HasChanged: boolean;
|
|
191
|
-
RegisterChangeCallback(callback:
|
|
193
|
+
RegisterChangeCallback(callback: Action_1<unknown>, state: unknown): IDisposable;
|
|
192
194
|
}
|
|
193
195
|
|
|
194
196
|
|
|
@@ -201,12 +203,12 @@ export interface __NullChangeToken$views {
|
|
|
201
203
|
As_IChangeToken(): Microsoft_Extensions_Primitives_Internal.IChangeToken$instance;
|
|
202
204
|
}
|
|
203
205
|
|
|
204
|
-
export interface NullChangeToken$instance extends Microsoft_Extensions_Primitives_Internal.IChangeToken$instance {}
|
|
205
|
-
|
|
206
206
|
export type NullChangeToken = NullChangeToken$instance & __NullChangeToken$views;
|
|
207
207
|
|
|
208
208
|
|
|
209
|
-
export interface NullFileProvider$instance {
|
|
209
|
+
export interface NullFileProvider$instance extends IFileProvider$instance {
|
|
210
|
+
readonly __tsonic_type_Microsoft_Extensions_FileProviders_NullFileProvider: never;
|
|
211
|
+
|
|
210
212
|
readonly __tsonic_iface_Microsoft_Extensions_FileProviders_IFileProvider: never;
|
|
211
213
|
|
|
212
214
|
GetDirectoryContents(subpath: string): IDirectoryContents;
|
|
@@ -224,12 +226,12 @@ export interface __NullFileProvider$views {
|
|
|
224
226
|
As_IFileProvider(): IFileProvider$instance;
|
|
225
227
|
}
|
|
226
228
|
|
|
227
|
-
export interface NullFileProvider$instance extends IFileProvider$instance {}
|
|
228
|
-
|
|
229
229
|
export type NullFileProvider = NullFileProvider$instance & __NullFileProvider$views;
|
|
230
230
|
|
|
231
231
|
|
|
232
|
-
export interface PhysicalFileProvider$instance {
|
|
232
|
+
export interface PhysicalFileProvider$instance extends IFileProvider$instance, System_Internal.IDisposable {
|
|
233
|
+
readonly __tsonic_type_Microsoft_Extensions_FileProviders_PhysicalFileProvider: never;
|
|
234
|
+
|
|
233
235
|
readonly __tsonic_iface_Microsoft_Extensions_FileProviders_IFileProvider: never;
|
|
234
236
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
235
237
|
|
|
@@ -254,8 +256,6 @@ export interface __PhysicalFileProvider$views {
|
|
|
254
256
|
As_IFileProvider(): IFileProvider$instance;
|
|
255
257
|
}
|
|
256
258
|
|
|
257
|
-
export interface PhysicalFileProvider$instance extends IFileProvider$instance, System_Internal.IDisposable {}
|
|
258
|
-
|
|
259
259
|
export type PhysicalFileProvider = PhysicalFileProvider$instance & __PhysicalFileProvider$views;
|
|
260
260
|
|
|
261
261
|
|
|
@@ -8,25 +8,27 @@ import type { sbyte, byte, short, ushort, int, uint, long, ulong, int128, uint12
|
|
|
8
8
|
// Import types from other namespaces
|
|
9
9
|
import * as Microsoft_Extensions_FileProviders_Internal from "../../Microsoft.Extensions.FileProviders/internal/index.js";
|
|
10
10
|
import type { IDirectoryContents, IFileInfo, IFileProvider } from "../../Microsoft.Extensions.FileProviders/internal/index.js";
|
|
11
|
-
import * as System_Collections_Generic_Internal from "@tsonic/dotnet/System.Collections.Generic.js";
|
|
12
|
-
import type {
|
|
13
|
-
import * as System_Collections_Internal from "@tsonic/dotnet/System.Collections.js";
|
|
14
|
-
import type { IEnumerable } from "@tsonic/dotnet/System.Collections.js";
|
|
15
|
-
import * as System_Internal from "@tsonic/dotnet/System.js";
|
|
16
|
-
import type { Boolean as ClrBoolean, Object as ClrObject, String as ClrString } from "@tsonic/dotnet/System.js";
|
|
17
|
-
|
|
18
|
-
export interface CompositeDirectoryContents$instance {
|
|
11
|
+
import * as System_Collections_Generic_Internal from "@tsonic/dotnet/System.Collections.Generic/internal/index.js";
|
|
12
|
+
import type { IEnumerable_1, IEnumerator_1, IList_1 } from "@tsonic/dotnet/System.Collections.Generic/internal/index.js";
|
|
13
|
+
import * as System_Collections_Internal from "@tsonic/dotnet/System.Collections/internal/index.js";
|
|
14
|
+
import type { IEnumerable } from "@tsonic/dotnet/System.Collections/internal/index.js";
|
|
15
|
+
import * as System_Internal from "@tsonic/dotnet/System/internal/index.js";
|
|
16
|
+
import type { Boolean as ClrBoolean, Object as ClrObject, String as ClrString } from "@tsonic/dotnet/System/internal/index.js";
|
|
17
|
+
|
|
18
|
+
export interface CompositeDirectoryContents$instance extends Microsoft_Extensions_FileProviders_Internal.IDirectoryContents$instance {
|
|
19
|
+
readonly __tsonic_type_Microsoft_Extensions_FileProviders_Composite_CompositeDirectoryContents: never;
|
|
20
|
+
|
|
19
21
|
readonly __tsonic_iface_Microsoft_Extensions_FileProviders_IDirectoryContents: never;
|
|
20
22
|
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
21
23
|
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
22
24
|
|
|
23
25
|
readonly Exists: boolean;
|
|
24
|
-
GetEnumerator():
|
|
26
|
+
GetEnumerator(): IEnumerator_1<IFileInfo>;
|
|
25
27
|
}
|
|
26
28
|
|
|
27
29
|
|
|
28
30
|
export const CompositeDirectoryContents: {
|
|
29
|
-
new(fileProviders:
|
|
31
|
+
new(fileProviders: IList_1<IFileProvider>, subpath: string): CompositeDirectoryContents;
|
|
30
32
|
};
|
|
31
33
|
|
|
32
34
|
|
|
@@ -34,8 +36,6 @@ export interface __CompositeDirectoryContents$views {
|
|
|
34
36
|
As_IDirectoryContents(): Microsoft_Extensions_FileProviders_Internal.IDirectoryContents$instance;
|
|
35
37
|
}
|
|
36
38
|
|
|
37
|
-
export interface CompositeDirectoryContents$instance extends Microsoft_Extensions_FileProviders_Internal.IDirectoryContents$instance {}
|
|
38
|
-
|
|
39
39
|
export type CompositeDirectoryContents = CompositeDirectoryContents$instance & __CompositeDirectoryContents$views;
|
|
40
40
|
|
|
41
41
|
|
|
@@ -8,12 +8,14 @@ import type { sbyte, byte, short, ushort, int, uint, long, ulong, int128, uint12
|
|
|
8
8
|
// Import types from other namespaces
|
|
9
9
|
import * as Microsoft_Extensions_FileProviders_Internal from "../../Microsoft.Extensions.FileProviders/internal/index.js";
|
|
10
10
|
import type { IFileInfo } from "../../Microsoft.Extensions.FileProviders/internal/index.js";
|
|
11
|
-
import type { Stream } from "@tsonic/dotnet/System.IO.js";
|
|
12
|
-
import
|
|
13
|
-
import
|
|
14
|
-
import type {
|
|
11
|
+
import type { Stream } from "@tsonic/dotnet/System.IO/internal/index.js";
|
|
12
|
+
import type { Assembly } from "@tsonic/dotnet/System.Reflection/internal/index.js";
|
|
13
|
+
import * as System_Internal from "@tsonic/dotnet/System/internal/index.js";
|
|
14
|
+
import type { Boolean as ClrBoolean, DateTimeOffset, Int64, Object as ClrObject, String as ClrString } from "@tsonic/dotnet/System/internal/index.js";
|
|
15
|
+
|
|
16
|
+
export interface EmbeddedResourceFileInfo$instance extends Microsoft_Extensions_FileProviders_Internal.IFileInfo$instance {
|
|
17
|
+
readonly __tsonic_type_Microsoft_Extensions_FileProviders_Embedded_EmbeddedResourceFileInfo: never;
|
|
15
18
|
|
|
16
|
-
export interface EmbeddedResourceFileInfo$instance {
|
|
17
19
|
readonly __tsonic_iface_Microsoft_Extensions_FileProviders_IFileInfo: never;
|
|
18
20
|
|
|
19
21
|
readonly Exists: boolean;
|
|
@@ -35,8 +37,6 @@ export interface __EmbeddedResourceFileInfo$views {
|
|
|
35
37
|
As_IFileInfo(): Microsoft_Extensions_FileProviders_Internal.IFileInfo$instance;
|
|
36
38
|
}
|
|
37
39
|
|
|
38
|
-
export interface EmbeddedResourceFileInfo$instance extends Microsoft_Extensions_FileProviders_Internal.IFileInfo$instance {}
|
|
39
|
-
|
|
40
40
|
export type EmbeddedResourceFileInfo = EmbeddedResourceFileInfo$instance & __EmbeddedResourceFileInfo$views;
|
|
41
41
|
|
|
42
42
|
|