@tsonic/aspnetcore 10.0.2 → 10.0.5
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.AspNetCore.Antiforgery/internal/index.d.ts +12 -0
- package/Microsoft.AspNetCore.Authentication/internal/index.d.ts +70 -2
- package/Microsoft.AspNetCore.Authentication.Cookies/internal/index.d.ts +12 -0
- package/Microsoft.AspNetCore.Authentication.OAuth/internal/index.d.ts +5 -0
- package/Microsoft.AspNetCore.Authentication.OAuth.Claims/internal/index.d.ts +3 -0
- package/Microsoft.AspNetCore.Authorization/internal/index.d.ts +40 -0
- package/Microsoft.AspNetCore.Authorization.Infrastructure/internal/index.d.ts +19 -0
- package/Microsoft.AspNetCore.Authorization.Policy/internal/index.d.ts +6 -0
- package/Microsoft.AspNetCore.Builder/internal/index.d.ts +40 -2
- package/Microsoft.AspNetCore.Components/internal/index.d.ts +74 -1
- package/Microsoft.AspNetCore.Components.Authorization/internal/index.d.ts +18 -1
- package/Microsoft.AspNetCore.Components.Endpoints/internal/index.d.ts +4 -0
- package/Microsoft.AspNetCore.Components.Forms/internal/index.d.ts +110 -5
- package/Microsoft.AspNetCore.Components.Forms.Mapping/internal/index.d.ts +2 -0
- package/Microsoft.AspNetCore.Components.Forms.Mapping.d.ts +3 -0
- package/Microsoft.AspNetCore.Components.HtmlRendering.Infrastructure/internal/index.d.ts +3 -0
- package/Microsoft.AspNetCore.Components.Infrastructure.d.ts +3 -0
- package/Microsoft.AspNetCore.Components.RenderTree/internal/index.d.ts +9 -0
- package/Microsoft.AspNetCore.Components.Rendering/internal/index.d.ts +4 -0
- package/Microsoft.AspNetCore.Components.Routing/internal/index.d.ts +28 -3
- package/Microsoft.AspNetCore.Components.Sections/internal/index.d.ts +8 -2
- package/Microsoft.AspNetCore.Components.Server/internal/index.d.ts +9 -0
- package/Microsoft.AspNetCore.Components.Web/internal/index.d.ts +30 -0
- package/Microsoft.AspNetCore.Components.Web.Internal/internal/index.d.ts +2 -0
- package/Microsoft.AspNetCore.Components.Web.Virtualization/internal/index.d.ts +7 -1
- package/Microsoft.AspNetCore.Connections/internal/index.d.ts +54 -1
- package/Microsoft.AspNetCore.Connections.Abstractions/internal/index.d.ts +2 -0
- package/Microsoft.AspNetCore.Connections.Features/internal/index.d.ts +44 -0
- package/Microsoft.AspNetCore.Cors/internal/index.d.ts +9 -0
- package/Microsoft.AspNetCore.Cors.Infrastructure/internal/index.d.ts +16 -0
- package/Microsoft.AspNetCore.DataProtection/internal/index.d.ts +19 -0
- package/Microsoft.AspNetCore.DataProtection.AuthenticatedEncryption/internal/index.d.ts +12 -0
- package/Microsoft.AspNetCore.DataProtection.AuthenticatedEncryption.ConfigurationModel/internal/index.d.ts +20 -0
- package/Microsoft.AspNetCore.DataProtection.AuthenticatedEncryption.ConfigurationModel.d.ts +3 -0
- package/Microsoft.AspNetCore.DataProtection.Infrastructure/internal/index.d.ts +2 -0
- package/Microsoft.AspNetCore.DataProtection.Internal/internal/index.d.ts +2 -0
- package/Microsoft.AspNetCore.DataProtection.KeyManagement/internal/index.d.ts +11 -0
- package/Microsoft.AspNetCore.DataProtection.KeyManagement.Internal/internal/index.d.ts +10 -0
- package/Microsoft.AspNetCore.DataProtection.Repositories/internal/index.d.ts +12 -0
- package/Microsoft.AspNetCore.DataProtection.XmlEncryption/internal/index.d.ts +24 -0
- package/Microsoft.AspNetCore.Diagnostics/internal/index.d.ts +21 -0
- package/Microsoft.AspNetCore.Hosting/internal/index.d.ts +32 -0
- package/Microsoft.AspNetCore.Hosting.Builder/internal/index.d.ts +4 -0
- package/Microsoft.AspNetCore.Hosting.Infrastructure/internal/index.d.ts +4 -0
- package/Microsoft.AspNetCore.Hosting.Server/internal/index.d.ts +10 -0
- package/Microsoft.AspNetCore.Hosting.Server.Abstractions/internal/index.d.ts +2 -0
- package/Microsoft.AspNetCore.Hosting.Server.Features/internal/index.d.ts +4 -0
- package/Microsoft.AspNetCore.Html/internal/index.d.ts +16 -0
- package/Microsoft.AspNetCore.Http/internal/index.d.ts +136 -1
- package/Microsoft.AspNetCore.Http.Connections/internal/index.d.ts +2 -0
- package/Microsoft.AspNetCore.Http.Connections.Features/internal/index.d.ts +4 -0
- package/Microsoft.AspNetCore.Http.Extensions/internal/index.d.ts +3 -0
- package/Microsoft.AspNetCore.Http.Features/internal/index.d.ts +113 -1
- package/Microsoft.AspNetCore.Http.Features.Authentication/internal/index.d.ts +4 -0
- package/Microsoft.AspNetCore.Http.HttpResults/internal/index.d.ts +207 -2
- package/Microsoft.AspNetCore.Http.Metadata/internal/index.d.ts +46 -0
- package/Microsoft.AspNetCore.Http.Timeouts/internal/index.d.ts +2 -0
- package/Microsoft.AspNetCore.HttpLogging/internal/index.d.ts +2 -0
- package/Microsoft.AspNetCore.Identity/internal/index.d.ts +153 -0
- package/Microsoft.AspNetCore.Identity.UI.Services/internal/index.d.ts +4 -0
- package/Microsoft.AspNetCore.Localization/internal/index.d.ts +16 -0
- package/Microsoft.AspNetCore.Localization.Routing/internal/index.d.ts +2 -0
- package/Microsoft.AspNetCore.Mvc/internal/index.d.ts +348 -1
- package/Microsoft.AspNetCore.Mvc.Abstractions/internal/index.d.ts +6 -0
- package/Microsoft.AspNetCore.Mvc.ActionConstraints/internal/index.d.ts +14 -0
- package/Microsoft.AspNetCore.Mvc.ApiExplorer/internal/index.d.ts +22 -0
- package/Microsoft.AspNetCore.Mvc.ApplicationModels/internal/index.d.ts +97 -0
- package/Microsoft.AspNetCore.Mvc.ApplicationParts/internal/index.d.ts +14 -0
- package/Microsoft.AspNetCore.Mvc.Authorization/internal/index.d.ts +9 -0
- package/Microsoft.AspNetCore.Mvc.Controllers/internal/index.d.ts +19 -0
- package/Microsoft.AspNetCore.Mvc.Core.Infrastructure/internal/index.d.ts +2 -0
- package/Microsoft.AspNetCore.Mvc.Cors/internal/index.d.ts +5 -0
- package/Microsoft.AspNetCore.Mvc.DataAnnotations/internal/index.d.ts +17 -0
- package/Microsoft.AspNetCore.Mvc.Diagnostics/internal/index.d.ts +259 -0
- package/Microsoft.AspNetCore.Mvc.Filters/internal/index.d.ts +64 -0
- package/Microsoft.AspNetCore.Mvc.Formatters/internal/index.d.ts +71 -0
- package/Microsoft.AspNetCore.Mvc.Formatters.Xml/internal/index.d.ts +36 -3
- package/Microsoft.AspNetCore.Mvc.Formatters.Xml.d.ts +3 -0
- package/Microsoft.AspNetCore.Mvc.Infrastructure/internal/index.d.ts +70 -0
- package/Microsoft.AspNetCore.Mvc.Localization/internal/index.d.ts +21 -0
- package/Microsoft.AspNetCore.Mvc.ModelBinding/internal/index.d.ts +171 -1
- package/Microsoft.AspNetCore.Mvc.ModelBinding.Binders/internal/index.d.ts +81 -0
- package/Microsoft.AspNetCore.Mvc.ModelBinding.Metadata/internal/index.d.ts +32 -0
- package/Microsoft.AspNetCore.Mvc.ModelBinding.Metadata.d.ts +3 -0
- package/Microsoft.AspNetCore.Mvc.ModelBinding.Validation/internal/index.d.ts +29 -0
- package/Microsoft.AspNetCore.Mvc.ModelBinding.Validation.d.ts +3 -0
- package/Microsoft.AspNetCore.Mvc.Razor/internal/index.d.ts +35 -0
- package/Microsoft.AspNetCore.Mvc.Razor.Compilation/internal/index.d.ts +4 -0
- package/Microsoft.AspNetCore.Mvc.Razor.TagHelpers/internal/index.d.ts +19 -0
- package/Microsoft.AspNetCore.Mvc.RazorPages/internal/index.d.ts +21 -0
- package/Microsoft.AspNetCore.Mvc.RazorPages.Infrastructure/internal/index.d.ts +21 -0
- package/Microsoft.AspNetCore.Mvc.Rendering/internal/index.d.ts +16 -0
- package/Microsoft.AspNetCore.Mvc.Routing/internal/index.d.ts +22 -0
- package/Microsoft.AspNetCore.Mvc.TagHelpers/internal/index.d.ts +63 -0
- package/Microsoft.AspNetCore.Mvc.TagHelpers.Cache/internal/index.d.ts +14 -0
- package/Microsoft.AspNetCore.Mvc.ViewComponents/internal/index.d.ts +36 -0
- package/Microsoft.AspNetCore.Mvc.ViewEngines/internal/index.d.ts +9 -0
- package/Microsoft.AspNetCore.Mvc.ViewFeatures/internal/index.d.ts +78 -0
- package/Microsoft.AspNetCore.Mvc.ViewFeatures.Buffers/internal/index.d.ts +2 -0
- package/Microsoft.AspNetCore.OutputCaching/internal/index.d.ts +8 -0
- package/Microsoft.AspNetCore.RateLimiting/internal/index.d.ts +2 -0
- package/Microsoft.AspNetCore.Razor.Hosting/internal/index.d.ts +4 -0
- package/Microsoft.AspNetCore.Razor.TagHelpers/internal/index.d.ts +41 -0
- package/Microsoft.AspNetCore.RequestDecompression/internal/index.d.ts +4 -0
- package/Microsoft.AspNetCore.ResponseCaching/internal/index.d.ts +4 -0
- package/Microsoft.AspNetCore.ResponseCompression/internal/index.d.ts +23 -0
- package/Microsoft.AspNetCore.Rewrite/internal/index.d.ts +2 -0
- package/Microsoft.AspNetCore.Routing/internal/index.d.ts +104 -0
- package/Microsoft.AspNetCore.Routing.Constraints/internal/index.d.ts +112 -0
- package/Microsoft.AspNetCore.Routing.Matching/internal/index.d.ts +20 -0
- package/Microsoft.AspNetCore.Routing.Patterns/internal/index.d.ts +2 -0
- package/Microsoft.AspNetCore.Routing.Tree/internal/index.d.ts +2 -0
- package/Microsoft.AspNetCore.Server.HttpSys/internal/index.d.ts +18 -0
- package/Microsoft.AspNetCore.Server.IIS/internal/index.d.ts +4 -0
- package/Microsoft.AspNetCore.Server.IISIntegration/internal/index.d.ts +2 -0
- package/Microsoft.AspNetCore.Server.Kestrel.Core/internal/index.d.ts +8 -0
- package/Microsoft.AspNetCore.Server.Kestrel.Core.Features/internal/index.d.ts +14 -0
- package/Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http/internal/index.d.ts +6 -0
- package/Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets/internal/index.d.ts +5 -0
- package/Microsoft.AspNetCore.Session/internal/index.d.ts +8 -0
- package/Microsoft.AspNetCore.SignalR/internal/index.d.ts +52 -0
- package/Microsoft.AspNetCore.SignalR.Protocol/internal/index.d.ts +4 -0
- package/Microsoft.AspNetCore.StaticAssets/internal/index.d.ts +2 -0
- package/Microsoft.AspNetCore.StaticFiles/internal/index.d.ts +8 -0
- package/Microsoft.AspNetCore.WebSockets.d.ts +3 -0
- package/Microsoft.AspNetCore.WebUtilities/internal/index.d.ts +16 -0
- package/Microsoft.Extensions.DependencyInjection/internal/index.d.ts +10 -0
- package/Microsoft.Extensions.Hosting.d.ts +3 -0
- package/Microsoft.JSInterop/internal/index.d.ts +32 -1
- package/Microsoft.JSInterop.Implementation/internal/index.d.ts +12 -0
- package/Microsoft.JSInterop.Infrastructure/internal/index.d.ts +2 -0
- package/Microsoft.Net.Http.Headers/internal/index.d.ts +4 -0
- package/System.Formats.Cbor/internal/index.d.ts +2 -0
- package/System.Security.Claims.d.ts +3 -0
- package/System.Threading.RateLimiting/internal/index.d.ts +25 -0
- package/__internal/extensions/index.d.ts +818 -529
- package/package.json +1 -1
|
@@ -71,12 +71,16 @@ export type RequestDelegate = (context: HttpContext) => Task;
|
|
|
71
71
|
|
|
72
72
|
|
|
73
73
|
export interface IBindableFromHttpContext_1$instance<TSelf extends IBindableFromHttpContext_1<TSelf>> {
|
|
74
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Http_IBindableFromHttpContext_1: never;
|
|
75
|
+
|
|
74
76
|
}
|
|
75
77
|
|
|
76
78
|
|
|
77
79
|
export type IBindableFromHttpContext_1<TSelf extends IBindableFromHttpContext_1<TSelf>> = IBindableFromHttpContext_1$instance<TSelf>;
|
|
78
80
|
|
|
79
81
|
export interface IContentTypeHttpResult$instance {
|
|
82
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Http_IContentTypeHttpResult: never;
|
|
83
|
+
|
|
80
84
|
readonly ContentType: string;
|
|
81
85
|
}
|
|
82
86
|
|
|
@@ -84,6 +88,8 @@ export interface IContentTypeHttpResult$instance {
|
|
|
84
88
|
export type IContentTypeHttpResult = IContentTypeHttpResult$instance;
|
|
85
89
|
|
|
86
90
|
export interface IEndpointFilter$instance {
|
|
91
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Http_IEndpointFilter: never;
|
|
92
|
+
|
|
87
93
|
InvokeAsync(context: EndpointFilterInvocationContext, next: EndpointFilterDelegate): ValueTask<unknown>;
|
|
88
94
|
}
|
|
89
95
|
|
|
@@ -91,6 +97,8 @@ export interface IEndpointFilter$instance {
|
|
|
91
97
|
export type IEndpointFilter = IEndpointFilter$instance;
|
|
92
98
|
|
|
93
99
|
export interface IFileHttpResult$instance {
|
|
100
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Http_IFileHttpResult: never;
|
|
101
|
+
|
|
94
102
|
readonly ContentType: string;
|
|
95
103
|
readonly FileDownloadName: string | undefined;
|
|
96
104
|
}
|
|
@@ -99,6 +107,8 @@ export interface IFileHttpResult$instance {
|
|
|
99
107
|
export type IFileHttpResult = IFileHttpResult$instance;
|
|
100
108
|
|
|
101
109
|
export interface IFormCollection$instance extends IEnumerable__System_Collections_Generic<KeyValuePair<System_Internal.String, StringValues>>, IEnumerable {
|
|
110
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Http_IFormCollection: never;
|
|
111
|
+
|
|
102
112
|
readonly Count: int;
|
|
103
113
|
readonly Keys: ICollection__System_Collections_Generic<System_Internal.String>;
|
|
104
114
|
readonly [key: string]: StringValues;
|
|
@@ -108,9 +118,13 @@ export interface IFormCollection$instance extends IEnumerable__System_Collection
|
|
|
108
118
|
}
|
|
109
119
|
|
|
110
120
|
|
|
121
|
+
export interface IFormCollection$instance extends System_Collections_Generic_Internal.IEnumerable<KeyValuePair<System_Internal.String, StringValues>> {}
|
|
122
|
+
|
|
111
123
|
export type IFormCollection = IFormCollection$instance;
|
|
112
124
|
|
|
113
125
|
export interface IFormFile$instance {
|
|
126
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Http_IFormFile: never;
|
|
127
|
+
|
|
114
128
|
readonly ContentType: string;
|
|
115
129
|
readonly ContentDisposition: string;
|
|
116
130
|
readonly Headers: IHeaderDictionary;
|
|
@@ -126,15 +140,21 @@ export interface IFormFile$instance {
|
|
|
126
140
|
export type IFormFile = IFormFile$instance;
|
|
127
141
|
|
|
128
142
|
export interface IFormFileCollection$instance extends IReadOnlyList<IFormFile>, IEnumerable__System_Collections_Generic<IFormFile>, IEnumerable, IReadOnlyCollection<IFormFile> {
|
|
143
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Http_IFormFileCollection: never;
|
|
144
|
+
|
|
129
145
|
readonly [name: string]: IFormFile | undefined;
|
|
130
146
|
GetFile(name: string): IFormFile | undefined;
|
|
131
147
|
GetFiles(name: string): IReadOnlyList<IFormFile>;
|
|
132
148
|
}
|
|
133
149
|
|
|
134
150
|
|
|
151
|
+
export interface IFormFileCollection$instance extends System_Collections_Generic_Internal.IEnumerable<IFormFile>, System_Collections_Generic_Internal.IReadOnlyCollection<IFormFile>, System_Collections_Generic_Internal.IReadOnlyList<IFormFile> {}
|
|
152
|
+
|
|
135
153
|
export type IFormFileCollection = IFormFileCollection$instance;
|
|
136
154
|
|
|
137
155
|
export interface IHeaderDictionary$instance extends IDictionary<System_Internal.String, StringValues>, ICollection__System_Collections_Generic<KeyValuePair<System_Internal.String, StringValues>>, IEnumerable__System_Collections_Generic<KeyValuePair<System_Internal.String, StringValues>>, IEnumerable {
|
|
156
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Http_IHeaderDictionary: never;
|
|
157
|
+
|
|
138
158
|
[key: string]: StringValues;
|
|
139
159
|
ContentLength: Nullable<System_Internal.Int64>;
|
|
140
160
|
Accept: StringValues;
|
|
@@ -229,9 +249,13 @@ export interface IHeaderDictionary$instance extends IDictionary<System_Internal.
|
|
|
229
249
|
}
|
|
230
250
|
|
|
231
251
|
|
|
252
|
+
export interface IHeaderDictionary$instance extends System_Collections_Generic_Internal.ICollection<KeyValuePair<System_Internal.String, StringValues>>, System_Collections_Generic_Internal.IDictionary<System_Internal.String, StringValues>, System_Collections_Generic_Internal.IEnumerable<KeyValuePair<System_Internal.String, StringValues>> {}
|
|
253
|
+
|
|
232
254
|
export type IHeaderDictionary = IHeaderDictionary$instance;
|
|
233
255
|
|
|
234
256
|
export interface IHttpContextAccessor$instance {
|
|
257
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Http_IHttpContextAccessor: never;
|
|
258
|
+
|
|
235
259
|
get HttpContext(): HttpContext | undefined;
|
|
236
260
|
set HttpContext(value: HttpContext | undefined);
|
|
237
261
|
}
|
|
@@ -240,6 +264,8 @@ export interface IHttpContextAccessor$instance {
|
|
|
240
264
|
export type IHttpContextAccessor = IHttpContextAccessor$instance;
|
|
241
265
|
|
|
242
266
|
export interface IHttpContextFactory$instance {
|
|
267
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Http_IHttpContextFactory: never;
|
|
268
|
+
|
|
243
269
|
Create(featureCollection: IFeatureCollection): HttpContext;
|
|
244
270
|
Dispose(httpContext: HttpContext): void;
|
|
245
271
|
}
|
|
@@ -248,6 +274,8 @@ export interface IHttpContextFactory$instance {
|
|
|
248
274
|
export type IHttpContextFactory = IHttpContextFactory$instance;
|
|
249
275
|
|
|
250
276
|
export interface IMiddleware$instance {
|
|
277
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Http_IMiddleware: never;
|
|
278
|
+
|
|
251
279
|
InvokeAsync(context: HttpContext, next: RequestDelegate): Task;
|
|
252
280
|
}
|
|
253
281
|
|
|
@@ -255,6 +283,8 @@ export interface IMiddleware$instance {
|
|
|
255
283
|
export type IMiddleware = IMiddleware$instance;
|
|
256
284
|
|
|
257
285
|
export interface IMiddlewareFactory$instance {
|
|
286
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Http_IMiddlewareFactory: never;
|
|
287
|
+
|
|
258
288
|
Create(middlewareType: Type): IMiddleware | undefined;
|
|
259
289
|
Release(middleware: IMiddleware): void;
|
|
260
290
|
}
|
|
@@ -263,6 +293,8 @@ export interface IMiddlewareFactory$instance {
|
|
|
263
293
|
export type IMiddlewareFactory = IMiddlewareFactory$instance;
|
|
264
294
|
|
|
265
295
|
export interface INestedHttpResult$instance {
|
|
296
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Http_INestedHttpResult: never;
|
|
297
|
+
|
|
266
298
|
readonly Result: IResult;
|
|
267
299
|
}
|
|
268
300
|
|
|
@@ -270,6 +302,8 @@ export interface INestedHttpResult$instance {
|
|
|
270
302
|
export type INestedHttpResult = INestedHttpResult$instance;
|
|
271
303
|
|
|
272
304
|
export interface IProblemDetailsService$instance {
|
|
305
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Http_IProblemDetailsService: never;
|
|
306
|
+
|
|
273
307
|
TryWriteAsync(context: ProblemDetailsContext): ValueTask<System_Internal.Boolean>;
|
|
274
308
|
WriteAsync(context: ProblemDetailsContext): ValueTask;
|
|
275
309
|
}
|
|
@@ -278,6 +312,8 @@ export interface IProblemDetailsService$instance {
|
|
|
278
312
|
export type IProblemDetailsService = IProblemDetailsService$instance;
|
|
279
313
|
|
|
280
314
|
export interface IProblemDetailsWriter$instance {
|
|
315
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Http_IProblemDetailsWriter: never;
|
|
316
|
+
|
|
281
317
|
CanWrite(context: ProblemDetailsContext): boolean;
|
|
282
318
|
WriteAsync(context: ProblemDetailsContext): ValueTask;
|
|
283
319
|
}
|
|
@@ -286,6 +322,8 @@ export interface IProblemDetailsWriter$instance {
|
|
|
286
322
|
export type IProblemDetailsWriter = IProblemDetailsWriter$instance;
|
|
287
323
|
|
|
288
324
|
export interface IQueryCollection$instance extends IEnumerable__System_Collections_Generic<KeyValuePair<System_Internal.String, StringValues>>, IEnumerable {
|
|
325
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Http_IQueryCollection: never;
|
|
326
|
+
|
|
289
327
|
readonly Count: int;
|
|
290
328
|
readonly Keys: ICollection__System_Collections_Generic<System_Internal.String>;
|
|
291
329
|
readonly [key: string]: StringValues;
|
|
@@ -294,9 +332,13 @@ export interface IQueryCollection$instance extends IEnumerable__System_Collectio
|
|
|
294
332
|
}
|
|
295
333
|
|
|
296
334
|
|
|
335
|
+
export interface IQueryCollection$instance extends System_Collections_Generic_Internal.IEnumerable<KeyValuePair<System_Internal.String, StringValues>> {}
|
|
336
|
+
|
|
297
337
|
export type IQueryCollection = IQueryCollection$instance;
|
|
298
338
|
|
|
299
339
|
export interface IRequestCookieCollection$instance extends IEnumerable__System_Collections_Generic<KeyValuePair<System_Internal.String, System_Internal.String>>, IEnumerable {
|
|
340
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Http_IRequestCookieCollection: never;
|
|
341
|
+
|
|
300
342
|
readonly Count: int;
|
|
301
343
|
readonly Keys: ICollection__System_Collections_Generic<System_Internal.String>;
|
|
302
344
|
readonly [key: string]: string | undefined;
|
|
@@ -305,9 +347,13 @@ export interface IRequestCookieCollection$instance extends IEnumerable__System_C
|
|
|
305
347
|
}
|
|
306
348
|
|
|
307
349
|
|
|
350
|
+
export interface IRequestCookieCollection$instance extends System_Collections_Generic_Internal.IEnumerable<KeyValuePair<System_Internal.String, System_Internal.String>> {}
|
|
351
|
+
|
|
308
352
|
export type IRequestCookieCollection = IRequestCookieCollection$instance;
|
|
309
353
|
|
|
310
354
|
export interface IResponseCookies$instance {
|
|
355
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Http_IResponseCookies: never;
|
|
356
|
+
|
|
311
357
|
Append(keyValuePairs: ReadOnlySpan<KeyValuePair<System_Internal.String, System_Internal.String>>, options: CookieOptions): void;
|
|
312
358
|
Append(key: string, value: string, options: CookieOptions): void;
|
|
313
359
|
Append(key: string, value: string): void;
|
|
@@ -319,6 +365,8 @@ export interface IResponseCookies$instance {
|
|
|
319
365
|
export type IResponseCookies = IResponseCookies$instance;
|
|
320
366
|
|
|
321
367
|
export interface IResult$instance {
|
|
368
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Http_IResult: never;
|
|
369
|
+
|
|
322
370
|
ExecuteAsync(httpContext: HttpContext): Task;
|
|
323
371
|
}
|
|
324
372
|
|
|
@@ -326,12 +374,16 @@ export interface IResult$instance {
|
|
|
326
374
|
export type IResult = IResult$instance;
|
|
327
375
|
|
|
328
376
|
export interface IResultExtensions$instance {
|
|
377
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Http_IResultExtensions: never;
|
|
378
|
+
|
|
329
379
|
}
|
|
330
380
|
|
|
331
381
|
|
|
332
382
|
export type IResultExtensions = IResultExtensions$instance;
|
|
333
383
|
|
|
334
384
|
export interface ISession$instance {
|
|
385
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Http_ISession: never;
|
|
386
|
+
|
|
335
387
|
readonly IsAvailable: boolean;
|
|
336
388
|
readonly Id: string;
|
|
337
389
|
readonly Keys: IEnumerable__System_Collections_Generic<System_Internal.String>;
|
|
@@ -346,6 +398,8 @@ export interface ISession$instance {
|
|
|
346
398
|
export type ISession = ISession$instance;
|
|
347
399
|
|
|
348
400
|
export interface IStatusCodeHttpResult$instance {
|
|
401
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Http_IStatusCodeHttpResult: never;
|
|
402
|
+
|
|
349
403
|
readonly StatusCode: Nullable<System_Internal.Int32>;
|
|
350
404
|
}
|
|
351
405
|
|
|
@@ -353,6 +407,8 @@ export interface IStatusCodeHttpResult$instance {
|
|
|
353
407
|
export type IStatusCodeHttpResult = IStatusCodeHttpResult$instance;
|
|
354
408
|
|
|
355
409
|
export interface IValueHttpResult$instance {
|
|
410
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Http_IValueHttpResult: never;
|
|
411
|
+
|
|
356
412
|
readonly Value: unknown | undefined;
|
|
357
413
|
}
|
|
358
414
|
|
|
@@ -360,6 +416,8 @@ export interface IValueHttpResult$instance {
|
|
|
360
416
|
export type IValueHttpResult = IValueHttpResult$instance;
|
|
361
417
|
|
|
362
418
|
export interface IValueHttpResult_1$instance<TValue> {
|
|
419
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Http_IValueHttpResult_1: never;
|
|
420
|
+
|
|
363
421
|
readonly Value: TValue | undefined;
|
|
364
422
|
}
|
|
365
423
|
|
|
@@ -367,6 +425,10 @@ export interface IValueHttpResult_1$instance<TValue> {
|
|
|
367
425
|
export type IValueHttpResult_1<TValue> = IValueHttpResult_1$instance<TValue>;
|
|
368
426
|
|
|
369
427
|
export interface EndpointMetadataCollection_Enumerator$instance {
|
|
428
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerator_1: never;
|
|
429
|
+
readonly __tsonic_iface_System_Collections_IEnumerator: never;
|
|
430
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
431
|
+
|
|
370
432
|
readonly Current: unknown;
|
|
371
433
|
Dispose(): void;
|
|
372
434
|
MoveNext(): boolean;
|
|
@@ -382,6 +444,10 @@ export const EndpointMetadataCollection_Enumerator: {
|
|
|
382
444
|
export type EndpointMetadataCollection_Enumerator = EndpointMetadataCollection_Enumerator$instance;
|
|
383
445
|
|
|
384
446
|
export interface FormCollection_Enumerator$instance {
|
|
447
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerator_1: never;
|
|
448
|
+
readonly __tsonic_iface_System_Collections_IEnumerator: never;
|
|
449
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
450
|
+
|
|
385
451
|
readonly Current: KeyValuePair<System_Internal.String, StringValues>;
|
|
386
452
|
Dispose(): void;
|
|
387
453
|
MoveNext(): boolean;
|
|
@@ -397,6 +463,8 @@ export const FormCollection_Enumerator: {
|
|
|
397
463
|
export type FormCollection_Enumerator = FormCollection_Enumerator$instance;
|
|
398
464
|
|
|
399
465
|
export interface FragmentString$instance {
|
|
466
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
467
|
+
|
|
400
468
|
readonly HasValue: boolean;
|
|
401
469
|
readonly Value: string;
|
|
402
470
|
Equals(other: FragmentString): boolean;
|
|
@@ -418,6 +486,10 @@ export const FragmentString: {
|
|
|
418
486
|
export type FragmentString = FragmentString$instance;
|
|
419
487
|
|
|
420
488
|
export interface HeaderDictionary_Enumerator$instance {
|
|
489
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerator_1: never;
|
|
490
|
+
readonly __tsonic_iface_System_Collections_IEnumerator: never;
|
|
491
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
492
|
+
|
|
421
493
|
readonly Current: KeyValuePair<System_Internal.String, StringValues>;
|
|
422
494
|
Dispose(): void;
|
|
423
495
|
MoveNext(): boolean;
|
|
@@ -433,6 +505,8 @@ export const HeaderDictionary_Enumerator: {
|
|
|
433
505
|
export type HeaderDictionary_Enumerator = HeaderDictionary_Enumerator$instance;
|
|
434
506
|
|
|
435
507
|
export interface HostString$instance {
|
|
508
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
509
|
+
|
|
436
510
|
readonly HasValue: boolean;
|
|
437
511
|
readonly Host: string;
|
|
438
512
|
readonly Port: Nullable<System_Internal.Int32>;
|
|
@@ -457,6 +531,8 @@ export const HostString: {
|
|
|
457
531
|
export type HostString = HostString$instance;
|
|
458
532
|
|
|
459
533
|
export interface PathString$instance {
|
|
534
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
535
|
+
|
|
460
536
|
readonly HasValue: boolean;
|
|
461
537
|
readonly Value: string | undefined;
|
|
462
538
|
Add(other: PathString): PathString;
|
|
@@ -487,6 +563,10 @@ export const PathString: {
|
|
|
487
563
|
export type PathString = PathString$instance;
|
|
488
564
|
|
|
489
565
|
export interface QueryCollection_Enumerator$instance {
|
|
566
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerator_1: never;
|
|
567
|
+
readonly __tsonic_iface_System_Collections_IEnumerator: never;
|
|
568
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
569
|
+
|
|
490
570
|
readonly Current: KeyValuePair<System_Internal.String, StringValues>;
|
|
491
571
|
Dispose(): void;
|
|
492
572
|
MoveNext(): boolean;
|
|
@@ -502,6 +582,8 @@ export const QueryCollection_Enumerator: {
|
|
|
502
582
|
export type QueryCollection_Enumerator = QueryCollection_Enumerator$instance;
|
|
503
583
|
|
|
504
584
|
export interface QueryString$instance {
|
|
585
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
586
|
+
|
|
505
587
|
readonly HasValue: boolean;
|
|
506
588
|
readonly Value: string | undefined;
|
|
507
589
|
Add(other: QueryString): QueryString;
|
|
@@ -528,6 +610,8 @@ export const QueryString: {
|
|
|
528
610
|
export type QueryString = QueryString$instance;
|
|
529
611
|
|
|
530
612
|
export interface AllowCookieRedirectAttribute$instance extends Attribute, IAllowCookieRedirectMetadata {
|
|
613
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Http_Metadata_IAllowCookieRedirectMetadata: never;
|
|
614
|
+
|
|
531
615
|
}
|
|
532
616
|
|
|
533
617
|
|
|
@@ -550,6 +634,8 @@ export const AsParametersAttribute: {
|
|
|
550
634
|
export type AsParametersAttribute = AsParametersAttribute$instance;
|
|
551
635
|
|
|
552
636
|
export interface BadHttpRequestException$instance extends IOException {
|
|
637
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
638
|
+
|
|
553
639
|
readonly StatusCode: int;
|
|
554
640
|
}
|
|
555
641
|
|
|
@@ -702,6 +788,8 @@ export const DefaultHttpContext: {
|
|
|
702
788
|
export type DefaultHttpContext = DefaultHttpContext$instance;
|
|
703
789
|
|
|
704
790
|
export interface DefaultHttpContextFactory$instance {
|
|
791
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Http_IHttpContextFactory: never;
|
|
792
|
+
|
|
705
793
|
Create(featureCollection: IFeatureCollection): HttpContext;
|
|
706
794
|
Dispose(httpContext: HttpContext): void;
|
|
707
795
|
}
|
|
@@ -722,6 +810,8 @@ export type DefaultHttpContextFactory = DefaultHttpContextFactory$instance & __D
|
|
|
722
810
|
|
|
723
811
|
|
|
724
812
|
export interface DisableHttpMetricsAttribute$instance extends Attribute, IDisableHttpMetricsMetadata {
|
|
813
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Http_Metadata_IDisableHttpMetricsMetadata: never;
|
|
814
|
+
|
|
725
815
|
ToString(): string;
|
|
726
816
|
}
|
|
727
817
|
|
|
@@ -749,6 +839,8 @@ export const Endpoint: {
|
|
|
749
839
|
export type Endpoint = Endpoint$instance;
|
|
750
840
|
|
|
751
841
|
export interface EndpointDescriptionAttribute$instance extends Attribute {
|
|
842
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Http_Metadata_IEndpointDescriptionMetadata: never;
|
|
843
|
+
|
|
752
844
|
readonly Description: string;
|
|
753
845
|
ToString(): string;
|
|
754
846
|
}
|
|
@@ -804,6 +896,11 @@ export const EndpointFilterInvocationContext: (abstract new() => EndpointFilterI
|
|
|
804
896
|
export type EndpointFilterInvocationContext = EndpointFilterInvocationContext$instance;
|
|
805
897
|
|
|
806
898
|
export interface EndpointMetadataCollection$instance {
|
|
899
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
900
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyCollection_1: never;
|
|
901
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyList_1: never;
|
|
902
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
903
|
+
|
|
807
904
|
readonly Count: int;
|
|
808
905
|
readonly [index: number]: unknown;
|
|
809
906
|
GetEnumerator(): EndpointMetadataCollection_Enumerator;
|
|
@@ -823,6 +920,8 @@ export const EndpointMetadataCollection: {
|
|
|
823
920
|
export type EndpointMetadataCollection = EndpointMetadataCollection$instance;
|
|
824
921
|
|
|
825
922
|
export interface EndpointSummaryAttribute$instance extends Attribute {
|
|
923
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Http_Metadata_IEndpointSummaryMetadata: never;
|
|
924
|
+
|
|
826
925
|
readonly Summary: string;
|
|
827
926
|
ToString(): string;
|
|
828
927
|
}
|
|
@@ -843,6 +942,10 @@ export type EndpointSummaryAttribute = EndpointSummaryAttribute$instance & __End
|
|
|
843
942
|
|
|
844
943
|
|
|
845
944
|
export interface FormCollection$instance {
|
|
945
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Http_IFormCollection: never;
|
|
946
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
947
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
948
|
+
|
|
846
949
|
readonly Count: int;
|
|
847
950
|
Files: IFormFileCollection;
|
|
848
951
|
readonly [key: string]: StringValues;
|
|
@@ -867,6 +970,8 @@ export type FormCollection = FormCollection$instance & __FormCollection$views;
|
|
|
867
970
|
|
|
868
971
|
|
|
869
972
|
export interface FormFile$instance {
|
|
973
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Http_IFormFile: never;
|
|
974
|
+
|
|
870
975
|
ContentDisposition: string;
|
|
871
976
|
ContentType: string;
|
|
872
977
|
readonly FileName: string;
|
|
@@ -892,6 +997,16 @@ export type FormFile = FormFile$instance & __FormFile$views;
|
|
|
892
997
|
|
|
893
998
|
|
|
894
999
|
export interface FormFileCollection$instance extends List<IFormFile> {
|
|
1000
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Http_IFormFileCollection: never;
|
|
1001
|
+
readonly __tsonic_iface_System_Collections_Generic_ICollection_1: never;
|
|
1002
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
1003
|
+
readonly __tsonic_iface_System_Collections_Generic_IList_1: never;
|
|
1004
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyCollection_1: never;
|
|
1005
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyList_1: never;
|
|
1006
|
+
readonly __tsonic_iface_System_Collections_ICollection: never;
|
|
1007
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
1008
|
+
readonly __tsonic_iface_System_Collections_IList: never;
|
|
1009
|
+
|
|
895
1010
|
readonly [name: string]: IFormFile | undefined;
|
|
896
1011
|
GetFile(name: string): IFormFile | undefined;
|
|
897
1012
|
GetFiles(name: string): IReadOnlyList<IFormFile>;
|
|
@@ -907,12 +1022,18 @@ export interface __FormFileCollection$views {
|
|
|
907
1022
|
As_IFormFileCollection(): IFormFileCollection$instance;
|
|
908
1023
|
}
|
|
909
1024
|
|
|
910
|
-
export interface FormFileCollection$instance extends IFormFileCollection$instance {}
|
|
1025
|
+
export interface FormFileCollection$instance extends IFormFileCollection$instance, System_Collections_Generic_Internal.ICollection<IFormFile>, System_Collections_Generic_Internal.IList<IFormFile> {}
|
|
911
1026
|
|
|
912
1027
|
export type FormFileCollection = FormFileCollection$instance & __FormFileCollection$views;
|
|
913
1028
|
|
|
914
1029
|
|
|
915
1030
|
export interface HeaderDictionary$instance {
|
|
1031
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Http_IHeaderDictionary: never;
|
|
1032
|
+
readonly __tsonic_iface_System_Collections_Generic_ICollection_1: never;
|
|
1033
|
+
readonly __tsonic_iface_System_Collections_Generic_IDictionary_2: never;
|
|
1034
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
1035
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
1036
|
+
|
|
916
1037
|
ContentLength: Nullable<System_Internal.Int64>;
|
|
917
1038
|
readonly Count: int;
|
|
918
1039
|
IsReadOnly: boolean;
|
|
@@ -971,6 +1092,8 @@ export const HttpContext: (abstract new() => HttpContext) & {
|
|
|
971
1092
|
export type HttpContext = HttpContext$instance;
|
|
972
1093
|
|
|
973
1094
|
export interface HttpContextAccessor$instance {
|
|
1095
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Http_IHttpContextAccessor: never;
|
|
1096
|
+
|
|
974
1097
|
get HttpContext(): HttpContext | undefined;
|
|
975
1098
|
set HttpContext(value: HttpContext | undefined);
|
|
976
1099
|
}
|
|
@@ -1066,6 +1189,8 @@ export const HttpValidationProblemDetails: {
|
|
|
1066
1189
|
export type HttpValidationProblemDetails = HttpValidationProblemDetails$instance;
|
|
1067
1190
|
|
|
1068
1191
|
export interface MiddlewareFactory$instance {
|
|
1192
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Http_IMiddlewareFactory: never;
|
|
1193
|
+
|
|
1069
1194
|
Create(middlewareType: Type): IMiddleware | undefined;
|
|
1070
1195
|
Release(middleware: IMiddleware): void;
|
|
1071
1196
|
}
|
|
@@ -1116,6 +1241,8 @@ export const ProblemDetailsOptions: {
|
|
|
1116
1241
|
export type ProblemDetailsOptions = ProblemDetailsOptions$instance;
|
|
1117
1242
|
|
|
1118
1243
|
export interface ProducesResponseTypeMetadata$instance {
|
|
1244
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Http_Metadata_IProducesResponseTypeMetadata: never;
|
|
1245
|
+
|
|
1119
1246
|
ContentTypes: IEnumerable__System_Collections_Generic<System_Internal.String>;
|
|
1120
1247
|
get Description(): string | undefined;
|
|
1121
1248
|
set Description(value: string | undefined);
|
|
@@ -1139,6 +1266,10 @@ export type ProducesResponseTypeMetadata = ProducesResponseTypeMetadata$instance
|
|
|
1139
1266
|
|
|
1140
1267
|
|
|
1141
1268
|
export interface QueryCollection$instance {
|
|
1269
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Http_IQueryCollection: never;
|
|
1270
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
1271
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
1272
|
+
|
|
1142
1273
|
readonly Count: int;
|
|
1143
1274
|
readonly [key: string]: StringValues;
|
|
1144
1275
|
readonly Keys: ICollection__System_Collections_Generic<System_Internal.String>;
|
|
@@ -1211,6 +1342,8 @@ export const RequestDelegateResult: {
|
|
|
1211
1342
|
export type RequestDelegateResult = RequestDelegateResult$instance;
|
|
1212
1343
|
|
|
1213
1344
|
export interface StreamResponseBodyFeature$instance {
|
|
1345
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Http_Features_IHttpResponseBodyFeature: never;
|
|
1346
|
+
|
|
1214
1347
|
readonly PriorFeature: IHttpResponseBodyFeature | undefined;
|
|
1215
1348
|
readonly Stream: Stream;
|
|
1216
1349
|
readonly Writer: PipeWriter;
|
|
@@ -1236,6 +1369,8 @@ export type StreamResponseBodyFeature = StreamResponseBodyFeature$instance & __S
|
|
|
1236
1369
|
|
|
1237
1370
|
|
|
1238
1371
|
export interface TagsAttribute$instance extends Attribute {
|
|
1372
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Http_Metadata_ITagsMetadata: never;
|
|
1373
|
+
|
|
1239
1374
|
readonly Tags: IReadOnlyList<System_Internal.String>;
|
|
1240
1375
|
ToString(): string;
|
|
1241
1376
|
}
|
|
@@ -52,6 +52,8 @@ export const ConnectionOptions: {
|
|
|
52
52
|
export type ConnectionOptions = ConnectionOptions$instance;
|
|
53
53
|
|
|
54
54
|
export interface ConnectionOptionsSetup$instance {
|
|
55
|
+
readonly __tsonic_iface_Microsoft_Extensions_Options_IConfigureOptions_1: never;
|
|
56
|
+
|
|
55
57
|
Configure(options: ConnectionOptions): void;
|
|
56
58
|
}
|
|
57
59
|
|
|
@@ -11,6 +11,8 @@ import type { HttpTransportType } from "../../Microsoft.AspNetCore.Http.Connecti
|
|
|
11
11
|
import type { HttpContext } from "../../Microsoft.AspNetCore.Http/internal/index.js";
|
|
12
12
|
|
|
13
13
|
export interface IHttpContextFeature$instance {
|
|
14
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Http_Connections_Features_IHttpContextFeature: never;
|
|
15
|
+
|
|
14
16
|
get HttpContext(): HttpContext | undefined;
|
|
15
17
|
set HttpContext(value: HttpContext | undefined);
|
|
16
18
|
}
|
|
@@ -19,6 +21,8 @@ export interface IHttpContextFeature$instance {
|
|
|
19
21
|
export type IHttpContextFeature = IHttpContextFeature$instance;
|
|
20
22
|
|
|
21
23
|
export interface IHttpTransportFeature$instance {
|
|
24
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Http_Connections_Features_IHttpTransportFeature: never;
|
|
25
|
+
|
|
22
26
|
readonly TransportType: HttpTransportType;
|
|
23
27
|
}
|
|
24
28
|
|
|
@@ -22,6 +22,9 @@ import type { Task } from "@tsonic/dotnet/System.Threading.Tasks.js";
|
|
|
22
22
|
import type { StringValues } from "@tsonic/microsoft-extensions/Microsoft.Extensions.Primitives.js";
|
|
23
23
|
|
|
24
24
|
export interface QueryBuilder$instance {
|
|
25
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
26
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
27
|
+
|
|
25
28
|
Add(key: string, values: IEnumerable__System_Collections_Generic<System_Internal.String>): void;
|
|
26
29
|
Add(key: string, value: string): void;
|
|
27
30
|
Equals(obj: unknown): boolean;
|