@tsonic/aspnetcore 10.0.2 → 10.0.6
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/internal/index.d.ts +6 -6
- package/Microsoft.AspNetCore.Antiforgery/internal/index.d.ts +27 -9
- package/Microsoft.AspNetCore.Authentication/internal/index.d.ts +250 -112
- package/Microsoft.AspNetCore.Authentication.BearerToken/internal/index.d.ts +13 -5
- package/Microsoft.AspNetCore.Authentication.Cookies/internal/index.d.ts +64 -34
- package/Microsoft.AspNetCore.Authentication.OAuth/internal/index.d.ts +47 -28
- package/Microsoft.AspNetCore.Authentication.OAuth.Claims/internal/index.d.ts +28 -11
- package/Microsoft.AspNetCore.Authorization/internal/index.d.ts +137 -75
- package/Microsoft.AspNetCore.Authorization.Infrastructure/internal/index.d.ts +53 -32
- package/Microsoft.AspNetCore.Authorization.Policy/internal/index.d.ts +21 -13
- package/Microsoft.AspNetCore.Builder/internal/index.d.ts +221 -139
- package/Microsoft.AspNetCore.Builder.Extensions/internal/index.d.ts +15 -5
- package/Microsoft.AspNetCore.Components/internal/index.d.ts +358 -187
- package/Microsoft.AspNetCore.Components.Authorization/internal/index.d.ts +46 -17
- package/Microsoft.AspNetCore.Components.CompilerServices/internal/index.d.ts +8 -8
- package/Microsoft.AspNetCore.Components.Endpoints/internal/index.d.ts +15 -5
- package/Microsoft.AspNetCore.Components.Endpoints.Infrastructure/internal/index.d.ts +6 -4
- package/Microsoft.AspNetCore.Components.Forms/internal/index.d.ts +220 -89
- package/Microsoft.AspNetCore.Components.Forms.Mapping/internal/index.d.ts +15 -9
- package/Microsoft.AspNetCore.Components.Forms.Mapping.d.ts +3 -0
- package/Microsoft.AspNetCore.Components.HtmlRendering.Infrastructure/internal/index.d.ts +10 -5
- package/Microsoft.AspNetCore.Components.Infrastructure/internal/index.d.ts +9 -7
- package/Microsoft.AspNetCore.Components.Infrastructure.d.ts +3 -0
- package/Microsoft.AspNetCore.Components.RenderTree/internal/index.d.ts +44 -13
- package/Microsoft.AspNetCore.Components.Rendering/internal/index.d.ts +16 -8
- package/Microsoft.AspNetCore.Components.Routing/internal/index.d.ts +55 -22
- package/Microsoft.AspNetCore.Components.Sections/internal/index.d.ts +15 -9
- package/Microsoft.AspNetCore.Components.Server/internal/index.d.ts +33 -20
- package/Microsoft.AspNetCore.Components.Server.Circuits/internal/index.d.ts +11 -5
- package/Microsoft.AspNetCore.Components.Server.ProtectedBrowserStorage/internal/index.d.ts +13 -5
- package/Microsoft.AspNetCore.Components.Web/internal/index.d.ts +105 -37
- package/Microsoft.AspNetCore.Components.Web.HtmlRendering/internal/index.d.ts +6 -4
- package/Microsoft.AspNetCore.Components.Web.Infrastructure/internal/index.d.ts +5 -3
- package/Microsoft.AspNetCore.Components.Web.Internal/internal/index.d.ts +3 -1
- package/Microsoft.AspNetCore.Components.Web.Virtualization/internal/index.d.ts +27 -15
- package/Microsoft.AspNetCore.Connections/internal/index.d.ts +130 -49
- package/Microsoft.AspNetCore.Connections.Abstractions/internal/index.d.ts +6 -4
- package/Microsoft.AspNetCore.Connections.Features/internal/index.d.ts +64 -20
- package/Microsoft.AspNetCore.CookiePolicy/internal/index.d.ts +13 -7
- package/Microsoft.AspNetCore.Cors/internal/index.d.ts +19 -8
- package/Microsoft.AspNetCore.Cors.Infrastructure/internal/index.d.ts +55 -29
- package/Microsoft.AspNetCore.Cryptography.KeyDerivation/internal/index.d.ts +2 -2
- package/Microsoft.AspNetCore.DataProtection/internal/index.d.ts +43 -20
- package/Microsoft.AspNetCore.DataProtection.AuthenticatedEncryption/internal/index.d.ts +28 -16
- package/Microsoft.AspNetCore.DataProtection.AuthenticatedEncryption.ConfigurationModel/internal/index.d.ts +59 -27
- package/Microsoft.AspNetCore.DataProtection.AuthenticatedEncryption.ConfigurationModel.d.ts +3 -0
- package/Microsoft.AspNetCore.DataProtection.Infrastructure/internal/index.d.ts +3 -1
- package/Microsoft.AspNetCore.DataProtection.Internal/internal/index.d.ts +3 -1
- package/Microsoft.AspNetCore.DataProtection.KeyManagement/internal/index.d.ts +32 -19
- package/Microsoft.AspNetCore.DataProtection.KeyManagement.Internal/internal/index.d.ts +19 -5
- package/Microsoft.AspNetCore.DataProtection.Repositories/internal/index.d.ts +31 -15
- package/Microsoft.AspNetCore.DataProtection.XmlEncryption/internal/index.d.ts +58 -32
- package/Microsoft.AspNetCore.Diagnostics/internal/index.d.ts +64 -21
- package/Microsoft.AspNetCore.Diagnostics.HealthChecks/internal/index.d.ts +15 -11
- package/Microsoft.AspNetCore.HostFiltering/internal/index.d.ts +12 -8
- package/Microsoft.AspNetCore.Hosting/internal/index.d.ts +89 -47
- package/Microsoft.AspNetCore.Hosting.Builder/internal/index.d.ts +9 -5
- package/Microsoft.AspNetCore.Hosting.Infrastructure/internal/index.d.ts +10 -6
- package/Microsoft.AspNetCore.Hosting.Server/internal/index.d.ts +16 -4
- package/Microsoft.AspNetCore.Hosting.Server.Abstractions/internal/index.d.ts +2 -0
- package/Microsoft.AspNetCore.Hosting.Server.Features/internal/index.d.ts +12 -8
- package/Microsoft.AspNetCore.Hosting.StaticWebAssets/internal/index.d.ts +5 -3
- package/Microsoft.AspNetCore.Html/internal/index.d.ts +31 -13
- package/Microsoft.AspNetCore.Http/internal/index.d.ts +408 -199
- package/Microsoft.AspNetCore.Http.Connections/internal/index.d.ts +34 -16
- package/Microsoft.AspNetCore.Http.Connections.Features/internal/index.d.ts +4 -0
- package/Microsoft.AspNetCore.Http.Extensions/internal/index.d.ts +21 -16
- package/Microsoft.AspNetCore.Http.Features/internal/index.d.ts +208 -88
- package/Microsoft.AspNetCore.Http.Features.Authentication/internal/index.d.ts +10 -6
- package/Microsoft.AspNetCore.Http.Headers/internal/index.d.ts +31 -27
- package/Microsoft.AspNetCore.Http.HttpResults/internal/index.d.ts +378 -171
- package/Microsoft.AspNetCore.Http.Json/internal/index.d.ts +5 -3
- package/Microsoft.AspNetCore.Http.Metadata/internal/index.d.ts +74 -26
- package/Microsoft.AspNetCore.Http.Timeouts/internal/index.d.ts +18 -8
- package/Microsoft.AspNetCore.HttpLogging/internal/index.d.ts +23 -11
- package/Microsoft.AspNetCore.HttpOverrides/internal/index.d.ts +23 -13
- package/Microsoft.AspNetCore.HttpsPolicy/internal/index.d.ts +21 -13
- package/Microsoft.AspNetCore.Identity/internal/index.d.ts +725 -456
- package/Microsoft.AspNetCore.Identity.Data/internal/index.d.ts +23 -3
- package/Microsoft.AspNetCore.Identity.UI.Services/internal/index.d.ts +10 -6
- package/Microsoft.AspNetCore.Localization/internal/index.d.ts +57 -27
- package/Microsoft.AspNetCore.Localization.Routing/internal/index.d.ts +7 -3
- package/Microsoft.AspNetCore.Mvc/internal/index.d.ts +724 -205
- package/Microsoft.AspNetCore.Mvc.Abstractions/internal/index.d.ts +27 -13
- package/Microsoft.AspNetCore.Mvc.ActionConstraints/internal/index.d.ts +37 -13
- package/Microsoft.AspNetCore.Mvc.ApiExplorer/internal/index.d.ts +76 -30
- package/Microsoft.AspNetCore.Mvc.ApplicationModels/internal/index.d.ts +244 -125
- package/Microsoft.AspNetCore.Mvc.ApplicationParts/internal/index.d.ts +59 -25
- package/Microsoft.AspNetCore.Mvc.Authorization/internal/index.d.ts +21 -10
- package/Microsoft.AspNetCore.Mvc.Controllers/internal/index.d.ts +51 -24
- package/Microsoft.AspNetCore.Mvc.Core.Infrastructure/internal/index.d.ts +3 -1
- package/Microsoft.AspNetCore.Mvc.Cors/internal/index.d.ts +12 -7
- package/Microsoft.AspNetCore.Mvc.DataAnnotations/internal/index.d.ts +43 -18
- package/Microsoft.AspNetCore.Mvc.Diagnostics/internal/index.d.ts +431 -68
- package/Microsoft.AspNetCore.Mvc.Filters/internal/index.d.ts +140 -44
- package/Microsoft.AspNetCore.Mvc.Formatters/internal/index.d.ts +192 -89
- package/Microsoft.AspNetCore.Mvc.Formatters.Xml/internal/index.d.ts +77 -36
- package/Microsoft.AspNetCore.Mvc.Formatters.Xml.d.ts +3 -0
- package/Microsoft.AspNetCore.Mvc.Infrastructure/internal/index.d.ts +162 -66
- package/Microsoft.AspNetCore.Mvc.Localization/internal/index.d.ts +48 -25
- package/Microsoft.AspNetCore.Mvc.ModelBinding/internal/index.d.ts +379 -133
- package/Microsoft.AspNetCore.Mvc.ModelBinding.Binders/internal/index.d.ts +217 -128
- package/Microsoft.AspNetCore.Mvc.ModelBinding.Metadata/internal/index.d.ts +156 -102
- package/Microsoft.AspNetCore.Mvc.ModelBinding.Metadata.d.ts +3 -0
- package/Microsoft.AspNetCore.Mvc.ModelBinding.Validation/internal/index.d.ts +100 -43
- package/Microsoft.AspNetCore.Mvc.ModelBinding.Validation.d.ts +3 -0
- package/Microsoft.AspNetCore.Mvc.Razor/internal/index.d.ts +105 -56
- package/Microsoft.AspNetCore.Mvc.Razor.Compilation/internal/index.d.ts +19 -9
- package/Microsoft.AspNetCore.Mvc.Razor.Infrastructure/internal/index.d.ts +5 -3
- package/Microsoft.AspNetCore.Mvc.Razor.Internal/internal/index.d.ts +4 -2
- package/Microsoft.AspNetCore.Mvc.Razor.TagHelpers/internal/index.d.ts +43 -18
- package/Microsoft.AspNetCore.Mvc.RazorPages/internal/index.d.ts +81 -42
- package/Microsoft.AspNetCore.Mvc.RazorPages.Infrastructure/internal/index.d.ts +70 -37
- package/Microsoft.AspNetCore.Mvc.Rendering/internal/index.d.ts +123 -95
- package/Microsoft.AspNetCore.Mvc.Routing/internal/index.d.ts +57 -25
- package/Microsoft.AspNetCore.Mvc.TagHelpers/internal/index.d.ts +151 -72
- package/Microsoft.AspNetCore.Mvc.TagHelpers.Cache/internal/index.d.ts +41 -23
- package/Microsoft.AspNetCore.Mvc.ViewComponents/internal/index.d.ts +94 -48
- package/Microsoft.AspNetCore.Mvc.ViewEngines/internal/index.d.ts +24 -11
- package/Microsoft.AspNetCore.Mvc.ViewFeatures/internal/index.d.ts +266 -144
- package/Microsoft.AspNetCore.Mvc.ViewFeatures.Buffers/internal/index.d.ts +7 -3
- package/Microsoft.AspNetCore.Mvc.ViewFeatures.Infrastructure/internal/index.d.ts +7 -5
- package/Microsoft.AspNetCore.OutputCaching/internal/index.d.ts +44 -26
- package/Microsoft.AspNetCore.RateLimiting/internal/index.d.ts +22 -12
- package/Microsoft.AspNetCore.Razor.Hosting/internal/index.d.ts +28 -10
- package/Microsoft.AspNetCore.Razor.Runtime.TagHelpers/internal/index.d.ts +17 -11
- package/Microsoft.AspNetCore.Razor.TagHelpers/internal/index.d.ts +100 -31
- package/Microsoft.AspNetCore.RequestDecompression/internal/index.d.ts +11 -5
- package/Microsoft.AspNetCore.ResponseCaching/internal/index.d.ts +18 -10
- package/Microsoft.AspNetCore.ResponseCompression/internal/index.d.ts +64 -29
- package/Microsoft.AspNetCore.Rewrite/internal/index.d.ts +20 -12
- package/Microsoft.AspNetCore.Routing/internal/index.d.ts +291 -131
- package/Microsoft.AspNetCore.Routing.Constraints/internal/index.d.ts +191 -79
- package/Microsoft.AspNetCore.Routing.Internal/internal/index.d.ts +5 -3
- package/Microsoft.AspNetCore.Routing.Matching/internal/index.d.ts +61 -25
- package/Microsoft.AspNetCore.Routing.Patterns/internal/index.d.ts +40 -20
- package/Microsoft.AspNetCore.Routing.Template/internal/index.d.ts +25 -9
- package/Microsoft.AspNetCore.Routing.Tree/internal/index.d.ts +29 -13
- package/Microsoft.AspNetCore.Server.HttpSys/internal/index.d.ts +50 -18
- package/Microsoft.AspNetCore.Server.IIS/internal/index.d.ts +12 -4
- package/Microsoft.AspNetCore.Server.IISIntegration/internal/index.d.ts +17 -11
- package/Microsoft.AspNetCore.Server.Kestrel/internal/index.d.ts +16 -12
- package/Microsoft.AspNetCore.Server.Kestrel.Core/internal/index.d.ts +56 -36
- package/Microsoft.AspNetCore.Server.Kestrel.Core.Features/internal/index.d.ts +17 -3
- package/Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http/internal/index.d.ts +20 -8
- package/Microsoft.AspNetCore.Server.Kestrel.Https/internal/index.d.ts +23 -17
- package/Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes/internal/index.d.ts +10 -6
- package/Microsoft.AspNetCore.Server.Kestrel.Transport.Quic/internal/index.d.ts +6 -4
- package/Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets/internal/index.d.ts +29 -18
- package/Microsoft.AspNetCore.Session/internal/index.d.ts +32 -22
- package/Microsoft.AspNetCore.SignalR/internal/index.d.ts +191 -91
- package/Microsoft.AspNetCore.SignalR.Protocol/internal/index.d.ts +63 -25
- package/Microsoft.AspNetCore.StaticAssets/internal/index.d.ts +21 -11
- package/Microsoft.AspNetCore.StaticAssets.Infrastructure/internal/index.d.ts +4 -4
- package/Microsoft.AspNetCore.StaticFiles/internal/index.d.ts +38 -22
- package/Microsoft.AspNetCore.StaticFiles.Infrastructure/internal/index.d.ts +7 -3
- package/Microsoft.AspNetCore.WebSockets/internal/index.d.ts +14 -10
- package/Microsoft.AspNetCore.WebSockets.d.ts +3 -0
- package/Microsoft.AspNetCore.WebUtilities/internal/index.d.ts +119 -73
- package/Microsoft.Extensions.DependencyInjection/internal/index.d.ts +135 -123
- package/Microsoft.Extensions.Hosting/internal/index.d.ts +10 -8
- package/Microsoft.Extensions.Hosting.d.ts +3 -0
- package/Microsoft.JSInterop/internal/index.d.ts +95 -52
- package/Microsoft.JSInterop.Implementation/internal/index.d.ts +40 -26
- package/Microsoft.JSInterop.Infrastructure/internal/index.d.ts +10 -2
- package/Microsoft.Net.Http.Headers/internal/index.d.ts +92 -60
- package/System.Formats.Cbor/internal/index.d.ts +29 -21
- package/System.Security.Claims/internal/index.d.ts +3 -3
- package/System.Security.Claims.d.ts +3 -0
- package/System.Threading.RateLimiting/internal/index.d.ts +84 -29
- package/__internal/extensions/index.d.ts +1776 -1190
- package/package.json +4 -4
|
@@ -13,18 +13,20 @@ import type { PageActionDescriptor } from "../../Microsoft.AspNetCore.Mvc.RazorP
|
|
|
13
13
|
import type { IRouteTemplateProvider } from "../../Microsoft.AspNetCore.Mvc.Routing/internal/index.js";
|
|
14
14
|
import type { ProducesErrorResponseTypeAttribute } from "../../Microsoft.AspNetCore.Mvc/internal/index.js";
|
|
15
15
|
import type { IOutboundParameterTransformer } from "../../Microsoft.AspNetCore.Routing/internal/index.js";
|
|
16
|
-
import * as System_Collections_Generic_Internal from "@tsonic/dotnet/System.Collections.Generic.js";
|
|
17
|
-
import type {
|
|
18
|
-
import * as
|
|
19
|
-
import type {
|
|
20
|
-
import * as
|
|
21
|
-
import type {
|
|
22
|
-
import
|
|
23
|
-
import
|
|
24
|
-
import type {
|
|
25
|
-
import type { IServiceProviderIsService } from "@tsonic/microsoft-extensions/Microsoft.Extensions.DependencyInjection.js";
|
|
16
|
+
import * as System_Collections_Generic_Internal from "@tsonic/dotnet/System.Collections.Generic/internal/index.js";
|
|
17
|
+
import type { ICollection_1, IDictionary_2, IEnumerable_1, IList_1, IReadOnlyCollection_1, IReadOnlyList_1 } from "@tsonic/dotnet/System.Collections.Generic/internal/index.js";
|
|
18
|
+
import * as System_Collections_ObjectModel_Internal from "@tsonic/dotnet/System.Collections.ObjectModel/internal/index.js";
|
|
19
|
+
import type { Collection_1 } from "@tsonic/dotnet/System.Collections.ObjectModel/internal/index.js";
|
|
20
|
+
import * as System_Collections_Internal from "@tsonic/dotnet/System.Collections/internal/index.js";
|
|
21
|
+
import type { ICollection, IEnumerable, IList } from "@tsonic/dotnet/System.Collections/internal/index.js";
|
|
22
|
+
import type { MemberInfo, MethodInfo, ParameterInfo, PropertyInfo, TypeInfo } from "@tsonic/dotnet/System.Reflection/internal/index.js";
|
|
23
|
+
import * as System_Internal from "@tsonic/dotnet/System/internal/index.js";
|
|
24
|
+
import type { Action_1, Boolean as ClrBoolean, Int32, Nullable_1, Object as ClrObject, String as ClrString, Type, Void } from "@tsonic/dotnet/System/internal/index.js";
|
|
25
|
+
import type { IServiceProviderIsService } from "@tsonic/microsoft-extensions/Microsoft.Extensions.DependencyInjection/internal/index.js";
|
|
26
26
|
|
|
27
27
|
export interface IActionModelConvention$instance {
|
|
28
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_ApplicationModels_IActionModelConvention: never;
|
|
29
|
+
|
|
28
30
|
Apply(action: ActionModel): void;
|
|
29
31
|
}
|
|
30
32
|
|
|
@@ -32,6 +34,8 @@ export interface IActionModelConvention$instance {
|
|
|
32
34
|
export type IActionModelConvention = IActionModelConvention$instance;
|
|
33
35
|
|
|
34
36
|
export interface IApiExplorerModel$instance {
|
|
37
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_ApplicationModels_IApiExplorerModel: never;
|
|
38
|
+
|
|
35
39
|
ApiExplorer: ApiExplorerModel;
|
|
36
40
|
}
|
|
37
41
|
|
|
@@ -39,6 +43,8 @@ export interface IApiExplorerModel$instance {
|
|
|
39
43
|
export type IApiExplorerModel = IApiExplorerModel$instance;
|
|
40
44
|
|
|
41
45
|
export interface IApplicationModelConvention$instance {
|
|
46
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_ApplicationModels_IApplicationModelConvention: never;
|
|
47
|
+
|
|
42
48
|
Apply(application: ApplicationModel): void;
|
|
43
49
|
}
|
|
44
50
|
|
|
@@ -46,6 +52,8 @@ export interface IApplicationModelConvention$instance {
|
|
|
46
52
|
export type IApplicationModelConvention = IApplicationModelConvention$instance;
|
|
47
53
|
|
|
48
54
|
export interface IApplicationModelProvider$instance {
|
|
55
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_ApplicationModels_IApplicationModelProvider: never;
|
|
56
|
+
|
|
49
57
|
readonly Order: int;
|
|
50
58
|
OnProvidersExecuting(context: ApplicationModelProviderContext): void;
|
|
51
59
|
}
|
|
@@ -54,6 +62,8 @@ export interface IApplicationModelProvider$instance {
|
|
|
54
62
|
export type IApplicationModelProvider = IApplicationModelProvider$instance;
|
|
55
63
|
|
|
56
64
|
export interface IBindingModel$instance {
|
|
65
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_ApplicationModels_IBindingModel: never;
|
|
66
|
+
|
|
57
67
|
get BindingInfo(): BindingInfo | undefined;
|
|
58
68
|
set BindingInfo(value: BindingInfo | undefined);
|
|
59
69
|
}
|
|
@@ -62,10 +72,12 @@ export interface IBindingModel$instance {
|
|
|
62
72
|
export type IBindingModel = IBindingModel$instance;
|
|
63
73
|
|
|
64
74
|
export interface ICommonModel$instance extends IPropertyModel {
|
|
65
|
-
readonly
|
|
75
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_ApplicationModels_ICommonModel: never;
|
|
76
|
+
|
|
77
|
+
readonly Attributes: IReadOnlyList_1<unknown>;
|
|
66
78
|
readonly MemberInfo: MemberInfo;
|
|
67
79
|
readonly Name: string;
|
|
68
|
-
readonly Properties:
|
|
80
|
+
readonly Properties: IDictionary_2<unknown, unknown | undefined>;
|
|
69
81
|
}
|
|
70
82
|
|
|
71
83
|
|
|
@@ -74,6 +86,8 @@ export interface ICommonModel$instance extends IPropertyModel$instance {}
|
|
|
74
86
|
export type ICommonModel = ICommonModel$instance;
|
|
75
87
|
|
|
76
88
|
export interface IControllerModelConvention$instance {
|
|
89
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_ApplicationModels_IControllerModelConvention: never;
|
|
90
|
+
|
|
77
91
|
Apply(controller: ControllerModel): void;
|
|
78
92
|
}
|
|
79
93
|
|
|
@@ -81,13 +95,17 @@ export interface IControllerModelConvention$instance {
|
|
|
81
95
|
export type IControllerModelConvention = IControllerModelConvention$instance;
|
|
82
96
|
|
|
83
97
|
export interface IFilterModel$instance {
|
|
84
|
-
readonly
|
|
98
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_ApplicationModels_IFilterModel: never;
|
|
99
|
+
|
|
100
|
+
readonly Filters: IList_1<IFilterMetadata>;
|
|
85
101
|
}
|
|
86
102
|
|
|
87
103
|
|
|
88
104
|
export type IFilterModel = IFilterModel$instance;
|
|
89
105
|
|
|
90
106
|
export interface IPageApplicationModelConvention$instance extends IPageConvention {
|
|
107
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_ApplicationModels_IPageApplicationModelConvention: never;
|
|
108
|
+
|
|
91
109
|
Apply(model: PageApplicationModel): void;
|
|
92
110
|
}
|
|
93
111
|
|
|
@@ -97,6 +115,8 @@ export interface IPageApplicationModelConvention$instance extends IPageConventio
|
|
|
97
115
|
export type IPageApplicationModelConvention = IPageApplicationModelConvention$instance;
|
|
98
116
|
|
|
99
117
|
export interface IPageApplicationModelPartsProvider$instance {
|
|
118
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_ApplicationModels_IPageApplicationModelPartsProvider: never;
|
|
119
|
+
|
|
100
120
|
CreateHandlerModel(method: MethodInfo): PageHandlerModel | undefined;
|
|
101
121
|
CreateParameterModel(parameter: ParameterInfo): PageParameterModel;
|
|
102
122
|
CreatePropertyModel(property: PropertyInfo): PagePropertyModel;
|
|
@@ -107,6 +127,8 @@ export interface IPageApplicationModelPartsProvider$instance {
|
|
|
107
127
|
export type IPageApplicationModelPartsProvider = IPageApplicationModelPartsProvider$instance;
|
|
108
128
|
|
|
109
129
|
export interface IPageApplicationModelProvider$instance {
|
|
130
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_ApplicationModels_IPageApplicationModelProvider: never;
|
|
131
|
+
|
|
110
132
|
readonly Order: int;
|
|
111
133
|
OnProvidersExecuting(context: PageApplicationModelProviderContext): void;
|
|
112
134
|
}
|
|
@@ -115,12 +137,16 @@ export interface IPageApplicationModelProvider$instance {
|
|
|
115
137
|
export type IPageApplicationModelProvider = IPageApplicationModelProvider$instance;
|
|
116
138
|
|
|
117
139
|
export interface IPageConvention$instance {
|
|
140
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_ApplicationModels_IPageConvention: never;
|
|
141
|
+
|
|
118
142
|
}
|
|
119
143
|
|
|
120
144
|
|
|
121
145
|
export type IPageConvention = IPageConvention$instance;
|
|
122
146
|
|
|
123
147
|
export interface IPageHandlerModelConvention$instance extends IPageConvention {
|
|
148
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_ApplicationModels_IPageHandlerModelConvention: never;
|
|
149
|
+
|
|
124
150
|
Apply(model: PageHandlerModel): void;
|
|
125
151
|
}
|
|
126
152
|
|
|
@@ -130,6 +156,8 @@ export interface IPageHandlerModelConvention$instance extends IPageConvention$in
|
|
|
130
156
|
export type IPageHandlerModelConvention = IPageHandlerModelConvention$instance;
|
|
131
157
|
|
|
132
158
|
export interface IPageRouteModelConvention$instance extends IPageConvention {
|
|
159
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_ApplicationModels_IPageRouteModelConvention: never;
|
|
160
|
+
|
|
133
161
|
Apply(model: PageRouteModel): void;
|
|
134
162
|
}
|
|
135
163
|
|
|
@@ -139,6 +167,8 @@ export interface IPageRouteModelConvention$instance extends IPageConvention$inst
|
|
|
139
167
|
export type IPageRouteModelConvention = IPageRouteModelConvention$instance;
|
|
140
168
|
|
|
141
169
|
export interface IPageRouteModelProvider$instance {
|
|
170
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_ApplicationModels_IPageRouteModelProvider: never;
|
|
171
|
+
|
|
142
172
|
readonly Order: int;
|
|
143
173
|
OnProvidersExecuting(context: PageRouteModelProviderContext): void;
|
|
144
174
|
}
|
|
@@ -147,6 +177,8 @@ export interface IPageRouteModelProvider$instance {
|
|
|
147
177
|
export type IPageRouteModelProvider = IPageRouteModelProvider$instance;
|
|
148
178
|
|
|
149
179
|
export interface IParameterModelBaseConvention$instance {
|
|
180
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_ApplicationModels_IParameterModelBaseConvention: never;
|
|
181
|
+
|
|
150
182
|
Apply(parameter: ParameterModelBase): void;
|
|
151
183
|
}
|
|
152
184
|
|
|
@@ -154,6 +186,8 @@ export interface IParameterModelBaseConvention$instance {
|
|
|
154
186
|
export type IParameterModelBaseConvention = IParameterModelBaseConvention$instance;
|
|
155
187
|
|
|
156
188
|
export interface IParameterModelConvention$instance {
|
|
189
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_ApplicationModels_IParameterModelConvention: never;
|
|
190
|
+
|
|
157
191
|
Apply(parameter: ParameterModel): void;
|
|
158
192
|
}
|
|
159
193
|
|
|
@@ -161,31 +195,40 @@ export interface IParameterModelConvention$instance {
|
|
|
161
195
|
export type IParameterModelConvention = IParameterModelConvention$instance;
|
|
162
196
|
|
|
163
197
|
export interface IPropertyModel$instance {
|
|
164
|
-
readonly
|
|
198
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_ApplicationModels_IPropertyModel: never;
|
|
199
|
+
|
|
200
|
+
readonly Properties: IDictionary_2<unknown, unknown | undefined>;
|
|
165
201
|
}
|
|
166
202
|
|
|
167
203
|
|
|
168
204
|
export type IPropertyModel = IPropertyModel$instance;
|
|
169
205
|
|
|
170
|
-
export interface ActionModel$instance {
|
|
206
|
+
export interface ActionModel$instance extends IApiExplorerModel$instance, ICommonModel$instance, IFilterModel$instance {
|
|
207
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_ApplicationModels_ActionModel: never;
|
|
208
|
+
|
|
209
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_ApplicationModels_IApiExplorerModel: never;
|
|
210
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_ApplicationModels_ICommonModel: never;
|
|
211
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_ApplicationModels_IFilterModel: never;
|
|
212
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_ApplicationModels_IPropertyModel: never;
|
|
213
|
+
|
|
171
214
|
readonly ActionMethod: MethodInfo;
|
|
172
215
|
ActionName: string;
|
|
173
216
|
ApiExplorer: ApiExplorerModel;
|
|
174
|
-
readonly Attributes:
|
|
217
|
+
readonly Attributes: IReadOnlyList_1<unknown>;
|
|
175
218
|
Controller: ControllerModel;
|
|
176
219
|
readonly DisplayName: string;
|
|
177
|
-
readonly Filters:
|
|
178
|
-
readonly Parameters:
|
|
179
|
-
readonly Properties:
|
|
220
|
+
readonly Filters: IList_1<IFilterMetadata>;
|
|
221
|
+
readonly Parameters: IList_1<ParameterModel>;
|
|
222
|
+
readonly Properties: IDictionary_2<unknown, unknown | undefined>;
|
|
180
223
|
get RouteParameterTransformer(): IOutboundParameterTransformer | undefined;
|
|
181
224
|
set RouteParameterTransformer(value: IOutboundParameterTransformer | undefined);
|
|
182
|
-
readonly RouteValues:
|
|
183
|
-
readonly Selectors:
|
|
225
|
+
readonly RouteValues: IDictionary_2<System_Internal.String, string | undefined>;
|
|
226
|
+
readonly Selectors: IList_1<SelectorModel>;
|
|
184
227
|
}
|
|
185
228
|
|
|
186
229
|
|
|
187
230
|
export const ActionModel: {
|
|
188
|
-
new(actionMethod: MethodInfo, attributes:
|
|
231
|
+
new(actionMethod: MethodInfo, attributes: IReadOnlyList_1<unknown>): ActionModel;
|
|
189
232
|
new(other: ActionModel): ActionModel;
|
|
190
233
|
};
|
|
191
234
|
|
|
@@ -197,12 +240,14 @@ export interface __ActionModel$views {
|
|
|
197
240
|
As_IPropertyModel(): IPropertyModel$instance;
|
|
198
241
|
}
|
|
199
242
|
|
|
200
|
-
export interface ActionModel$instance extends IApiExplorerModel$instance, ICommonModel$instance, IFilterModel$instance {}
|
|
201
|
-
|
|
202
243
|
export type ActionModel = ActionModel$instance & __ActionModel$views;
|
|
203
244
|
|
|
204
245
|
|
|
205
|
-
export interface ApiConventionApplicationModelConvention$instance {
|
|
246
|
+
export interface ApiConventionApplicationModelConvention$instance extends IActionModelConvention$instance {
|
|
247
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_ApplicationModels_ApiConventionApplicationModelConvention: never;
|
|
248
|
+
|
|
249
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_ApplicationModels_IActionModelConvention: never;
|
|
250
|
+
|
|
206
251
|
readonly DefaultErrorResponseType: ProducesErrorResponseTypeAttribute;
|
|
207
252
|
Apply(action: ActionModel): void;
|
|
208
253
|
ShouldApply(action: ActionModel): boolean;
|
|
@@ -218,15 +263,15 @@ export interface __ApiConventionApplicationModelConvention$views {
|
|
|
218
263
|
As_IActionModelConvention(): IActionModelConvention$instance;
|
|
219
264
|
}
|
|
220
265
|
|
|
221
|
-
export interface ApiConventionApplicationModelConvention$instance extends IActionModelConvention$instance {}
|
|
222
|
-
|
|
223
266
|
export type ApiConventionApplicationModelConvention = ApiConventionApplicationModelConvention$instance & __ApiConventionApplicationModelConvention$views;
|
|
224
267
|
|
|
225
268
|
|
|
226
269
|
export interface ApiExplorerModel$instance {
|
|
270
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_ApplicationModels_ApiExplorerModel: never;
|
|
271
|
+
|
|
227
272
|
get GroupName(): string | undefined;
|
|
228
273
|
set GroupName(value: string | undefined);
|
|
229
|
-
IsVisible:
|
|
274
|
+
IsVisible: Nullable_1<System_Internal.Boolean>;
|
|
230
275
|
}
|
|
231
276
|
|
|
232
277
|
|
|
@@ -238,7 +283,11 @@ export const ApiExplorerModel: {
|
|
|
238
283
|
|
|
239
284
|
export type ApiExplorerModel = ApiExplorerModel$instance;
|
|
240
285
|
|
|
241
|
-
export interface ApiVisibilityConvention$instance {
|
|
286
|
+
export interface ApiVisibilityConvention$instance extends IActionModelConvention$instance {
|
|
287
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_ApplicationModels_ApiVisibilityConvention: never;
|
|
288
|
+
|
|
289
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_ApplicationModels_IActionModelConvention: never;
|
|
290
|
+
|
|
242
291
|
Apply(action: ActionModel): void;
|
|
243
292
|
ShouldApply(action: ActionModel): boolean;
|
|
244
293
|
}
|
|
@@ -253,16 +302,20 @@ export interface __ApiVisibilityConvention$views {
|
|
|
253
302
|
As_IActionModelConvention(): IActionModelConvention$instance;
|
|
254
303
|
}
|
|
255
304
|
|
|
256
|
-
export interface ApiVisibilityConvention$instance extends IActionModelConvention$instance {}
|
|
257
|
-
|
|
258
305
|
export type ApiVisibilityConvention = ApiVisibilityConvention$instance & __ApiVisibilityConvention$views;
|
|
259
306
|
|
|
260
307
|
|
|
261
|
-
export interface ApplicationModel$instance {
|
|
308
|
+
export interface ApplicationModel$instance extends IApiExplorerModel$instance, IFilterModel$instance, IPropertyModel$instance {
|
|
309
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_ApplicationModels_ApplicationModel: never;
|
|
310
|
+
|
|
311
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_ApplicationModels_IApiExplorerModel: never;
|
|
312
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_ApplicationModels_IFilterModel: never;
|
|
313
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_ApplicationModels_IPropertyModel: never;
|
|
314
|
+
|
|
262
315
|
ApiExplorer: ApiExplorerModel;
|
|
263
|
-
readonly Controllers:
|
|
264
|
-
readonly Filters:
|
|
265
|
-
readonly Properties:
|
|
316
|
+
readonly Controllers: IList_1<ControllerModel>;
|
|
317
|
+
readonly Filters: IList_1<IFilterMetadata>;
|
|
318
|
+
readonly Properties: IDictionary_2<unknown, unknown | undefined>;
|
|
266
319
|
}
|
|
267
320
|
|
|
268
321
|
|
|
@@ -277,30 +330,32 @@ export interface __ApplicationModel$views {
|
|
|
277
330
|
As_IPropertyModel(): IPropertyModel$instance;
|
|
278
331
|
}
|
|
279
332
|
|
|
280
|
-
export interface ApplicationModel$instance extends IApiExplorerModel$instance, IFilterModel$instance, IPropertyModel$instance {}
|
|
281
|
-
|
|
282
333
|
export type ApplicationModel = ApplicationModel$instance & __ApplicationModel$views;
|
|
283
334
|
|
|
284
335
|
|
|
285
336
|
export interface ApplicationModelProviderContext$instance {
|
|
286
|
-
readonly
|
|
337
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_ApplicationModels_ApplicationModelProviderContext: never;
|
|
338
|
+
|
|
339
|
+
readonly ControllerTypes: IEnumerable_1<TypeInfo>;
|
|
287
340
|
readonly Result: ApplicationModel;
|
|
288
341
|
}
|
|
289
342
|
|
|
290
343
|
|
|
291
344
|
export const ApplicationModelProviderContext: {
|
|
292
|
-
new(controllerTypes:
|
|
345
|
+
new(controllerTypes: IEnumerable_1<TypeInfo>): ApplicationModelProviderContext;
|
|
293
346
|
};
|
|
294
347
|
|
|
295
348
|
|
|
296
349
|
export type ApplicationModelProviderContext = ApplicationModelProviderContext$instance;
|
|
297
350
|
|
|
298
351
|
export interface AttributeRouteModel$instance {
|
|
352
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_ApplicationModels_AttributeRouteModel: never;
|
|
353
|
+
|
|
299
354
|
readonly Attribute: IRouteTemplateProvider | undefined;
|
|
300
355
|
readonly IsAbsoluteTemplate: boolean;
|
|
301
356
|
get Name(): string | undefined;
|
|
302
357
|
set Name(value: string | undefined);
|
|
303
|
-
Order:
|
|
358
|
+
Order: Nullable_1<System_Internal.Int32>;
|
|
304
359
|
SuppressLinkGeneration: boolean;
|
|
305
360
|
SuppressPathMatching: boolean;
|
|
306
361
|
get Template(): string | undefined;
|
|
@@ -315,14 +370,18 @@ export const AttributeRouteModel: {
|
|
|
315
370
|
CombineAttributeRouteModel(left: AttributeRouteModel, right: AttributeRouteModel): AttributeRouteModel | undefined;
|
|
316
371
|
CombineTemplates(prefix: string, template: string): string | undefined;
|
|
317
372
|
IsOverridePattern(template: string): boolean;
|
|
318
|
-
ReplaceTokens(template: string, values:
|
|
319
|
-
ReplaceTokens(template: string, values:
|
|
373
|
+
ReplaceTokens(template: string, values: IDictionary_2<System_Internal.String, System_Internal.String>, routeTokenTransformer: IOutboundParameterTransformer): string;
|
|
374
|
+
ReplaceTokens(template: string, values: IDictionary_2<System_Internal.String, System_Internal.String>): string;
|
|
320
375
|
};
|
|
321
376
|
|
|
322
377
|
|
|
323
378
|
export type AttributeRouteModel = AttributeRouteModel$instance;
|
|
324
379
|
|
|
325
|
-
export interface ClientErrorResultFilterConvention$instance {
|
|
380
|
+
export interface ClientErrorResultFilterConvention$instance extends IActionModelConvention$instance {
|
|
381
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_ApplicationModels_ClientErrorResultFilterConvention: never;
|
|
382
|
+
|
|
383
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_ApplicationModels_IActionModelConvention: never;
|
|
384
|
+
|
|
326
385
|
Apply(action: ActionModel): void;
|
|
327
386
|
ShouldApply(action: ActionModel): boolean;
|
|
328
387
|
}
|
|
@@ -337,12 +396,14 @@ export interface __ClientErrorResultFilterConvention$views {
|
|
|
337
396
|
As_IActionModelConvention(): IActionModelConvention$instance;
|
|
338
397
|
}
|
|
339
398
|
|
|
340
|
-
export interface ClientErrorResultFilterConvention$instance extends IActionModelConvention$instance {}
|
|
341
|
-
|
|
342
399
|
export type ClientErrorResultFilterConvention = ClientErrorResultFilterConvention$instance & __ClientErrorResultFilterConvention$views;
|
|
343
400
|
|
|
344
401
|
|
|
345
|
-
export interface ConsumesConstraintForFormFileParameterConvention$instance {
|
|
402
|
+
export interface ConsumesConstraintForFormFileParameterConvention$instance extends IActionModelConvention$instance {
|
|
403
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_ApplicationModels_ConsumesConstraintForFormFileParameterConvention: never;
|
|
404
|
+
|
|
405
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_ApplicationModels_IActionModelConvention: never;
|
|
406
|
+
|
|
346
407
|
Apply(action: ActionModel): void;
|
|
347
408
|
ShouldApply(action: ActionModel): boolean;
|
|
348
409
|
}
|
|
@@ -357,30 +418,35 @@ export interface __ConsumesConstraintForFormFileParameterConvention$views {
|
|
|
357
418
|
As_IActionModelConvention(): IActionModelConvention$instance;
|
|
358
419
|
}
|
|
359
420
|
|
|
360
|
-
export interface ConsumesConstraintForFormFileParameterConvention$instance extends IActionModelConvention$instance {}
|
|
361
|
-
|
|
362
421
|
export type ConsumesConstraintForFormFileParameterConvention = ConsumesConstraintForFormFileParameterConvention$instance & __ConsumesConstraintForFormFileParameterConvention$views;
|
|
363
422
|
|
|
364
423
|
|
|
365
|
-
export interface ControllerModel$instance {
|
|
366
|
-
readonly
|
|
424
|
+
export interface ControllerModel$instance extends IApiExplorerModel$instance, ICommonModel$instance, IFilterModel$instance {
|
|
425
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_ApplicationModels_ControllerModel: never;
|
|
426
|
+
|
|
427
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_ApplicationModels_IApiExplorerModel: never;
|
|
428
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_ApplicationModels_ICommonModel: never;
|
|
429
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_ApplicationModels_IFilterModel: never;
|
|
430
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_ApplicationModels_IPropertyModel: never;
|
|
431
|
+
|
|
432
|
+
readonly Actions: IList_1<ActionModel>;
|
|
367
433
|
ApiExplorer: ApiExplorerModel;
|
|
368
434
|
get Application(): ApplicationModel | undefined;
|
|
369
435
|
set Application(value: ApplicationModel | undefined);
|
|
370
|
-
readonly Attributes:
|
|
436
|
+
readonly Attributes: IReadOnlyList_1<unknown>;
|
|
371
437
|
ControllerName: string;
|
|
372
|
-
readonly ControllerProperties:
|
|
438
|
+
readonly ControllerProperties: IList_1<PropertyModel>;
|
|
373
439
|
readonly ControllerType: TypeInfo;
|
|
374
440
|
readonly DisplayName: string;
|
|
375
|
-
readonly Filters:
|
|
376
|
-
readonly Properties:
|
|
377
|
-
readonly RouteValues:
|
|
378
|
-
readonly Selectors:
|
|
441
|
+
readonly Filters: IList_1<IFilterMetadata>;
|
|
442
|
+
readonly Properties: IDictionary_2<unknown, unknown | undefined>;
|
|
443
|
+
readonly RouteValues: IDictionary_2<System_Internal.String, string | undefined>;
|
|
444
|
+
readonly Selectors: IList_1<SelectorModel>;
|
|
379
445
|
}
|
|
380
446
|
|
|
381
447
|
|
|
382
448
|
export const ControllerModel: {
|
|
383
|
-
new(controllerType: TypeInfo, attributes:
|
|
449
|
+
new(controllerType: TypeInfo, attributes: IReadOnlyList_1<unknown>): ControllerModel;
|
|
384
450
|
new(other: ControllerModel): ControllerModel;
|
|
385
451
|
};
|
|
386
452
|
|
|
@@ -392,12 +458,14 @@ export interface __ControllerModel$views {
|
|
|
392
458
|
As_IPropertyModel(): IPropertyModel$instance;
|
|
393
459
|
}
|
|
394
460
|
|
|
395
|
-
export interface ControllerModel$instance extends IApiExplorerModel$instance, ICommonModel$instance, IFilterModel$instance {}
|
|
396
|
-
|
|
397
461
|
export type ControllerModel = ControllerModel$instance & __ControllerModel$views;
|
|
398
462
|
|
|
399
463
|
|
|
400
|
-
export interface InferParameterBindingInfoConvention$instance {
|
|
464
|
+
export interface InferParameterBindingInfoConvention$instance extends IActionModelConvention$instance {
|
|
465
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_ApplicationModels_InferParameterBindingInfoConvention: never;
|
|
466
|
+
|
|
467
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_ApplicationModels_IActionModelConvention: never;
|
|
468
|
+
|
|
401
469
|
Apply(action: ActionModel): void;
|
|
402
470
|
ShouldApply(action: ActionModel): boolean;
|
|
403
471
|
}
|
|
@@ -413,12 +481,14 @@ export interface __InferParameterBindingInfoConvention$views {
|
|
|
413
481
|
As_IActionModelConvention(): IActionModelConvention$instance;
|
|
414
482
|
}
|
|
415
483
|
|
|
416
|
-
export interface InferParameterBindingInfoConvention$instance extends IActionModelConvention$instance {}
|
|
417
|
-
|
|
418
484
|
export type InferParameterBindingInfoConvention = InferParameterBindingInfoConvention$instance & __InferParameterBindingInfoConvention$views;
|
|
419
485
|
|
|
420
486
|
|
|
421
|
-
export interface InvalidModelStateFilterConvention$instance {
|
|
487
|
+
export interface InvalidModelStateFilterConvention$instance extends IActionModelConvention$instance {
|
|
488
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_ApplicationModels_InvalidModelStateFilterConvention: never;
|
|
489
|
+
|
|
490
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_ApplicationModels_IActionModelConvention: never;
|
|
491
|
+
|
|
422
492
|
Apply(action: ActionModel): void;
|
|
423
493
|
ShouldApply(action: ActionModel): boolean;
|
|
424
494
|
}
|
|
@@ -433,25 +503,25 @@ export interface __InvalidModelStateFilterConvention$views {
|
|
|
433
503
|
As_IActionModelConvention(): IActionModelConvention$instance;
|
|
434
504
|
}
|
|
435
505
|
|
|
436
|
-
export interface InvalidModelStateFilterConvention$instance extends IActionModelConvention$instance {}
|
|
437
|
-
|
|
438
506
|
export type InvalidModelStateFilterConvention = InvalidModelStateFilterConvention$instance & __InvalidModelStateFilterConvention$views;
|
|
439
507
|
|
|
440
508
|
|
|
441
509
|
export interface PageApplicationModel$instance {
|
|
510
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_ApplicationModels_PageApplicationModel: never;
|
|
511
|
+
|
|
442
512
|
readonly ActionDescriptor: PageActionDescriptor;
|
|
443
513
|
readonly AreaName: string | undefined;
|
|
444
514
|
readonly DeclaredModelType: TypeInfo | undefined;
|
|
445
|
-
readonly EndpointMetadata:
|
|
446
|
-
readonly Filters:
|
|
447
|
-
readonly HandlerMethods:
|
|
448
|
-
readonly HandlerProperties:
|
|
515
|
+
readonly EndpointMetadata: IList_1<unknown>;
|
|
516
|
+
readonly Filters: IList_1<IFilterMetadata>;
|
|
517
|
+
readonly HandlerMethods: IList_1<PageHandlerModel>;
|
|
518
|
+
readonly HandlerProperties: IList_1<PagePropertyModel>;
|
|
449
519
|
readonly HandlerType: TypeInfo;
|
|
450
|
-
readonly HandlerTypeAttributes:
|
|
520
|
+
readonly HandlerTypeAttributes: IReadOnlyList_1<unknown>;
|
|
451
521
|
get ModelType(): TypeInfo | undefined;
|
|
452
522
|
set ModelType(value: TypeInfo | undefined);
|
|
453
523
|
PageType: TypeInfo;
|
|
454
|
-
readonly Properties:
|
|
524
|
+
readonly Properties: IDictionary_2<unknown, unknown | undefined>;
|
|
455
525
|
readonly RelativePath: string;
|
|
456
526
|
readonly RouteTemplate: string | undefined;
|
|
457
527
|
readonly ViewEnginePath: string;
|
|
@@ -459,8 +529,8 @@ export interface PageApplicationModel$instance {
|
|
|
459
529
|
|
|
460
530
|
|
|
461
531
|
export const PageApplicationModel: {
|
|
462
|
-
new(actionDescriptor: PageActionDescriptor, handlerType: TypeInfo, handlerAttributes:
|
|
463
|
-
new(actionDescriptor: PageActionDescriptor, declaredModelType: TypeInfo, handlerType: TypeInfo, handlerAttributes:
|
|
532
|
+
new(actionDescriptor: PageActionDescriptor, handlerType: TypeInfo, handlerAttributes: IReadOnlyList_1<unknown>): PageApplicationModel;
|
|
533
|
+
new(actionDescriptor: PageActionDescriptor, declaredModelType: TypeInfo, handlerType: TypeInfo, handlerAttributes: IReadOnlyList_1<unknown>): PageApplicationModel;
|
|
464
534
|
new(other: PageApplicationModel): PageApplicationModel;
|
|
465
535
|
};
|
|
466
536
|
|
|
@@ -468,6 +538,8 @@ export const PageApplicationModel: {
|
|
|
468
538
|
export type PageApplicationModel = PageApplicationModel$instance;
|
|
469
539
|
|
|
470
540
|
export interface PageApplicationModelProviderContext$instance {
|
|
541
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_ApplicationModels_PageApplicationModelProviderContext: never;
|
|
542
|
+
|
|
471
543
|
readonly ActionDescriptor: PageActionDescriptor;
|
|
472
544
|
PageApplicationModel: PageApplicationModel;
|
|
473
545
|
readonly PageType: TypeInfo;
|
|
@@ -481,15 +553,26 @@ export const PageApplicationModelProviderContext: {
|
|
|
481
553
|
|
|
482
554
|
export type PageApplicationModelProviderContext = PageApplicationModelProviderContext$instance;
|
|
483
555
|
|
|
484
|
-
export interface PageConventionCollection$instance extends
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
556
|
+
export interface PageConventionCollection$instance extends Collection_1<IPageConvention> {
|
|
557
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_ApplicationModels_PageConventionCollection: never;
|
|
558
|
+
|
|
559
|
+
readonly __tsonic_iface_System_Collections_Generic_ICollection_1: never;
|
|
560
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
561
|
+
readonly __tsonic_iface_System_Collections_Generic_IList_1: never;
|
|
562
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyCollection_1: never;
|
|
563
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyList_1: never;
|
|
564
|
+
readonly __tsonic_iface_System_Collections_ICollection: never;
|
|
565
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
566
|
+
readonly __tsonic_iface_System_Collections_IList: never;
|
|
567
|
+
|
|
568
|
+
AddAreaFolderApplicationModelConvention(areaName: string, folderPath: string, action: Action_1<PageApplicationModel>): IPageApplicationModelConvention;
|
|
569
|
+
AddAreaFolderRouteModelConvention(areaName: string, folderPath: string, action: Action_1<PageRouteModel>): IPageRouteModelConvention;
|
|
570
|
+
AddAreaPageApplicationModelConvention(areaName: string, pageName: string, action: Action_1<PageApplicationModel>): IPageApplicationModelConvention;
|
|
571
|
+
AddAreaPageRouteModelConvention(areaName: string, pageName: string, action: Action_1<PageRouteModel>): IPageRouteModelConvention;
|
|
572
|
+
AddFolderApplicationModelConvention(folderPath: string, action: Action_1<PageApplicationModel>): IPageApplicationModelConvention;
|
|
573
|
+
AddFolderRouteModelConvention(folderPath: string, action: Action_1<PageRouteModel>): IPageRouteModelConvention;
|
|
574
|
+
AddPageApplicationModelConvention(pageName: string, action: Action_1<PageApplicationModel>): IPageApplicationModelConvention;
|
|
575
|
+
AddPageRouteModelConvention(pageName: string, action: Action_1<PageRouteModel>): IPageRouteModelConvention;
|
|
493
576
|
RemoveType<TPageConvention extends IPageConvention>(): void;
|
|
494
577
|
RemoveType(pageConventionType: Type): void;
|
|
495
578
|
}
|
|
@@ -497,27 +580,32 @@ export interface PageConventionCollection$instance extends Collection<IPageConve
|
|
|
497
580
|
|
|
498
581
|
export const PageConventionCollection: {
|
|
499
582
|
new(): PageConventionCollection;
|
|
500
|
-
new(conventions:
|
|
583
|
+
new(conventions: IList_1<IPageConvention>): PageConventionCollection;
|
|
501
584
|
};
|
|
502
585
|
|
|
503
586
|
|
|
504
587
|
export type PageConventionCollection = PageConventionCollection$instance;
|
|
505
588
|
|
|
506
589
|
export interface PageHandlerModel$instance {
|
|
507
|
-
readonly
|
|
590
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_ApplicationModels_PageHandlerModel: never;
|
|
591
|
+
|
|
592
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_ApplicationModels_ICommonModel: never;
|
|
593
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_ApplicationModels_IPropertyModel: never;
|
|
594
|
+
|
|
595
|
+
readonly Attributes: IReadOnlyList_1<unknown>;
|
|
508
596
|
get HandlerName(): string | undefined;
|
|
509
597
|
set HandlerName(value: string | undefined);
|
|
510
598
|
HttpMethod: string;
|
|
511
599
|
readonly MethodInfo: MethodInfo;
|
|
512
600
|
Name: string;
|
|
513
601
|
Page: PageApplicationModel;
|
|
514
|
-
readonly Parameters:
|
|
515
|
-
readonly Properties:
|
|
602
|
+
readonly Parameters: IList_1<PageParameterModel>;
|
|
603
|
+
readonly Properties: IDictionary_2<unknown, unknown | undefined>;
|
|
516
604
|
}
|
|
517
605
|
|
|
518
606
|
|
|
519
607
|
export const PageHandlerModel: {
|
|
520
|
-
new(handlerMethod: MethodInfo, attributes:
|
|
608
|
+
new(handlerMethod: MethodInfo, attributes: IReadOnlyList_1<unknown>): PageHandlerModel;
|
|
521
609
|
new(other: PageHandlerModel): PageHandlerModel;
|
|
522
610
|
};
|
|
523
611
|
|
|
@@ -530,7 +618,13 @@ export interface __PageHandlerModel$views {
|
|
|
530
618
|
export type PageHandlerModel = PageHandlerModel$instance & __PageHandlerModel$views;
|
|
531
619
|
|
|
532
620
|
|
|
533
|
-
export interface PageParameterModel$instance extends ParameterModelBase$instance {
|
|
621
|
+
export interface PageParameterModel$instance extends ParameterModelBase$instance, IBindingModel$instance {
|
|
622
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_ApplicationModels_PageParameterModel: never;
|
|
623
|
+
|
|
624
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_ApplicationModels_IBindingModel: never;
|
|
625
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_ApplicationModels_ICommonModel: never;
|
|
626
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_ApplicationModels_IPropertyModel: never;
|
|
627
|
+
|
|
534
628
|
Handler: PageHandlerModel;
|
|
535
629
|
readonly ParameterInfo: ParameterInfo;
|
|
536
630
|
ParameterName: string;
|
|
@@ -538,7 +632,7 @@ export interface PageParameterModel$instance extends ParameterModelBase$instance
|
|
|
538
632
|
|
|
539
633
|
|
|
540
634
|
export const PageParameterModel: {
|
|
541
|
-
new(parameterInfo: ParameterInfo, attributes:
|
|
635
|
+
new(parameterInfo: ParameterInfo, attributes: IReadOnlyList_1<unknown>): PageParameterModel;
|
|
542
636
|
new(other: PageParameterModel): PageParameterModel;
|
|
543
637
|
};
|
|
544
638
|
|
|
@@ -549,12 +643,16 @@ export interface __PageParameterModel$views {
|
|
|
549
643
|
As_IPropertyModel(): IPropertyModel$instance;
|
|
550
644
|
}
|
|
551
645
|
|
|
552
|
-
export interface PageParameterModel$instance extends IBindingModel$instance {}
|
|
553
|
-
|
|
554
646
|
export type PageParameterModel = PageParameterModel$instance & __PageParameterModel$views;
|
|
555
647
|
|
|
556
648
|
|
|
557
|
-
export interface PagePropertyModel$instance extends ParameterModelBase$instance {
|
|
649
|
+
export interface PagePropertyModel$instance extends ParameterModelBase$instance, IBindingModel$instance {
|
|
650
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_ApplicationModels_PagePropertyModel: never;
|
|
651
|
+
|
|
652
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_ApplicationModels_IBindingModel: never;
|
|
653
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_ApplicationModels_ICommonModel: never;
|
|
654
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_ApplicationModels_IPropertyModel: never;
|
|
655
|
+
|
|
558
656
|
Page: PageApplicationModel;
|
|
559
657
|
readonly PropertyInfo: PropertyInfo;
|
|
560
658
|
PropertyName: string;
|
|
@@ -562,7 +660,7 @@ export interface PagePropertyModel$instance extends ParameterModelBase$instance
|
|
|
562
660
|
|
|
563
661
|
|
|
564
662
|
export const PagePropertyModel: {
|
|
565
|
-
new(propertyInfo: PropertyInfo, attributes:
|
|
663
|
+
new(propertyInfo: PropertyInfo, attributes: IReadOnlyList_1<unknown>): PagePropertyModel;
|
|
566
664
|
new(other: PagePropertyModel): PagePropertyModel;
|
|
567
665
|
};
|
|
568
666
|
|
|
@@ -573,12 +671,12 @@ export interface __PagePropertyModel$views {
|
|
|
573
671
|
As_IPropertyModel(): IPropertyModel$instance;
|
|
574
672
|
}
|
|
575
673
|
|
|
576
|
-
export interface PagePropertyModel$instance extends IBindingModel$instance {}
|
|
577
|
-
|
|
578
674
|
export type PagePropertyModel = PagePropertyModel$instance & __PagePropertyModel$views;
|
|
579
675
|
|
|
580
676
|
|
|
581
677
|
export interface PageRouteMetadata$instance {
|
|
678
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_ApplicationModels_PageRouteMetadata: never;
|
|
679
|
+
|
|
582
680
|
readonly PageRoute: string;
|
|
583
681
|
readonly RouteTemplate: string | undefined;
|
|
584
682
|
}
|
|
@@ -592,13 +690,15 @@ export const PageRouteMetadata: {
|
|
|
592
690
|
export type PageRouteMetadata = PageRouteMetadata$instance;
|
|
593
691
|
|
|
594
692
|
export interface PageRouteModel$instance {
|
|
693
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_ApplicationModels_PageRouteModel: never;
|
|
694
|
+
|
|
595
695
|
readonly AreaName: string | undefined;
|
|
596
|
-
readonly Properties:
|
|
696
|
+
readonly Properties: IDictionary_2<unknown, unknown | undefined>;
|
|
597
697
|
readonly RelativePath: string;
|
|
598
698
|
get RouteParameterTransformer(): IOutboundParameterTransformer | undefined;
|
|
599
699
|
set RouteParameterTransformer(value: IOutboundParameterTransformer | undefined);
|
|
600
|
-
readonly RouteValues:
|
|
601
|
-
readonly Selectors:
|
|
700
|
+
readonly RouteValues: IDictionary_2<System_Internal.String, System_Internal.String>;
|
|
701
|
+
readonly Selectors: IList_1<SelectorModel>;
|
|
602
702
|
readonly ViewEnginePath: string;
|
|
603
703
|
}
|
|
604
704
|
|
|
@@ -613,7 +713,9 @@ export const PageRouteModel: {
|
|
|
613
713
|
export type PageRouteModel = PageRouteModel$instance;
|
|
614
714
|
|
|
615
715
|
export interface PageRouteModelProviderContext$instance {
|
|
616
|
-
readonly
|
|
716
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_ApplicationModels_PageRouteModelProviderContext: never;
|
|
717
|
+
|
|
718
|
+
readonly RouteModels: IList_1<PageRouteModel>;
|
|
617
719
|
}
|
|
618
720
|
|
|
619
721
|
|
|
@@ -624,7 +726,12 @@ export const PageRouteModelProviderContext: {
|
|
|
624
726
|
|
|
625
727
|
export type PageRouteModelProviderContext = PageRouteModelProviderContext$instance;
|
|
626
728
|
|
|
627
|
-
export interface PageRouteTransformerConvention$instance extends IPageConvention {
|
|
729
|
+
export interface PageRouteTransformerConvention$instance extends IPageConvention, IPageRouteModelConvention$instance {
|
|
730
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_ApplicationModels_PageRouteTransformerConvention: never;
|
|
731
|
+
|
|
732
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_ApplicationModels_IPageConvention: never;
|
|
733
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_ApplicationModels_IPageRouteModelConvention: never;
|
|
734
|
+
|
|
628
735
|
Apply(model: PageRouteModel): void;
|
|
629
736
|
ShouldApply(action: PageRouteModel): boolean;
|
|
630
737
|
}
|
|
@@ -639,23 +746,27 @@ export interface __PageRouteTransformerConvention$views {
|
|
|
639
746
|
As_IPageRouteModelConvention(): IPageRouteModelConvention$instance;
|
|
640
747
|
}
|
|
641
748
|
|
|
642
|
-
export interface PageRouteTransformerConvention$instance extends IPageRouteModelConvention$instance {}
|
|
643
|
-
|
|
644
749
|
export type PageRouteTransformerConvention = PageRouteTransformerConvention$instance & __PageRouteTransformerConvention$views;
|
|
645
750
|
|
|
646
751
|
|
|
647
|
-
export interface ParameterModel$instance extends ParameterModelBase$instance {
|
|
752
|
+
export interface ParameterModel$instance extends ParameterModelBase$instance, IBindingModel$instance {
|
|
753
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_ApplicationModels_ParameterModel: never;
|
|
754
|
+
|
|
755
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_ApplicationModels_IBindingModel: never;
|
|
756
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_ApplicationModels_ICommonModel: never;
|
|
757
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_ApplicationModels_IPropertyModel: never;
|
|
758
|
+
|
|
648
759
|
Action: ActionModel;
|
|
649
|
-
readonly Attributes:
|
|
760
|
+
readonly Attributes: IReadOnlyList_1<unknown>;
|
|
650
761
|
readonly DisplayName: string;
|
|
651
762
|
readonly ParameterInfo: ParameterInfo;
|
|
652
763
|
ParameterName: string;
|
|
653
|
-
readonly Properties:
|
|
764
|
+
readonly Properties: IDictionary_2<unknown, unknown | undefined>;
|
|
654
765
|
}
|
|
655
766
|
|
|
656
767
|
|
|
657
768
|
export const ParameterModel: {
|
|
658
|
-
new(parameterInfo: ParameterInfo, attributes:
|
|
769
|
+
new(parameterInfo: ParameterInfo, attributes: IReadOnlyList_1<unknown>): ParameterModel;
|
|
659
770
|
new(other: ParameterModel): ParameterModel;
|
|
660
771
|
};
|
|
661
772
|
|
|
@@ -666,22 +777,24 @@ export interface __ParameterModel$views {
|
|
|
666
777
|
As_IPropertyModel(): IPropertyModel$instance;
|
|
667
778
|
}
|
|
668
779
|
|
|
669
|
-
export interface ParameterModel$instance extends IBindingModel$instance {}
|
|
670
|
-
|
|
671
780
|
export type ParameterModel = ParameterModel$instance & __ParameterModel$views;
|
|
672
781
|
|
|
673
782
|
|
|
674
|
-
export interface ParameterModelBase$instance {
|
|
675
|
-
readonly
|
|
783
|
+
export interface ParameterModelBase$instance extends IBindingModel$instance {
|
|
784
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_ApplicationModels_ParameterModelBase: never;
|
|
785
|
+
|
|
786
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_ApplicationModels_IBindingModel: never;
|
|
787
|
+
|
|
788
|
+
readonly Attributes: IReadOnlyList_1<unknown>;
|
|
676
789
|
get BindingInfo(): BindingInfo | undefined;
|
|
677
790
|
set BindingInfo(value: BindingInfo | undefined);
|
|
678
791
|
Name: string;
|
|
679
792
|
readonly ParameterType: Type;
|
|
680
|
-
readonly Properties:
|
|
793
|
+
readonly Properties: IDictionary_2<unknown, unknown | undefined>;
|
|
681
794
|
}
|
|
682
795
|
|
|
683
796
|
|
|
684
|
-
export const ParameterModelBase: (abstract new(parameterType: Type, attributes:
|
|
797
|
+
export const ParameterModelBase: (abstract new(parameterType: Type, attributes: IReadOnlyList_1<unknown>) => ParameterModelBase) & (abstract new(other: ParameterModelBase) => ParameterModelBase) & {
|
|
685
798
|
};
|
|
686
799
|
|
|
687
800
|
|
|
@@ -689,22 +802,26 @@ export interface __ParameterModelBase$views {
|
|
|
689
802
|
As_IBindingModel(): IBindingModel$instance;
|
|
690
803
|
}
|
|
691
804
|
|
|
692
|
-
export interface ParameterModelBase$instance extends IBindingModel$instance {}
|
|
693
|
-
|
|
694
805
|
export type ParameterModelBase = ParameterModelBase$instance & __ParameterModelBase$views;
|
|
695
806
|
|
|
696
807
|
|
|
697
|
-
export interface PropertyModel$instance extends ParameterModelBase$instance {
|
|
698
|
-
readonly
|
|
808
|
+
export interface PropertyModel$instance extends ParameterModelBase$instance, IBindingModel$instance {
|
|
809
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_ApplicationModels_PropertyModel: never;
|
|
810
|
+
|
|
811
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_ApplicationModels_IBindingModel: never;
|
|
812
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_ApplicationModels_ICommonModel: never;
|
|
813
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_ApplicationModels_IPropertyModel: never;
|
|
814
|
+
|
|
815
|
+
readonly Attributes: IReadOnlyList_1<unknown>;
|
|
699
816
|
Controller: ControllerModel;
|
|
700
|
-
readonly Properties:
|
|
817
|
+
readonly Properties: IDictionary_2<unknown, unknown | undefined>;
|
|
701
818
|
readonly PropertyInfo: PropertyInfo;
|
|
702
819
|
PropertyName: string;
|
|
703
820
|
}
|
|
704
821
|
|
|
705
822
|
|
|
706
823
|
export const PropertyModel: {
|
|
707
|
-
new(propertyInfo: PropertyInfo, attributes:
|
|
824
|
+
new(propertyInfo: PropertyInfo, attributes: IReadOnlyList_1<unknown>): PropertyModel;
|
|
708
825
|
new(other: PropertyModel): PropertyModel;
|
|
709
826
|
};
|
|
710
827
|
|
|
@@ -715,12 +832,14 @@ export interface __PropertyModel$views {
|
|
|
715
832
|
As_IPropertyModel(): IPropertyModel$instance;
|
|
716
833
|
}
|
|
717
834
|
|
|
718
|
-
export interface PropertyModel$instance extends IBindingModel$instance {}
|
|
719
|
-
|
|
720
835
|
export type PropertyModel = PropertyModel$instance & __PropertyModel$views;
|
|
721
836
|
|
|
722
837
|
|
|
723
|
-
export interface RouteTokenTransformerConvention$instance {
|
|
838
|
+
export interface RouteTokenTransformerConvention$instance extends IActionModelConvention$instance {
|
|
839
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_ApplicationModels_RouteTokenTransformerConvention: never;
|
|
840
|
+
|
|
841
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_ApplicationModels_IActionModelConvention: never;
|
|
842
|
+
|
|
724
843
|
Apply(action: ActionModel): void;
|
|
725
844
|
ShouldApply(action: ActionModel): boolean;
|
|
726
845
|
}
|
|
@@ -735,16 +854,16 @@ export interface __RouteTokenTransformerConvention$views {
|
|
|
735
854
|
As_IActionModelConvention(): IActionModelConvention$instance;
|
|
736
855
|
}
|
|
737
856
|
|
|
738
|
-
export interface RouteTokenTransformerConvention$instance extends IActionModelConvention$instance {}
|
|
739
|
-
|
|
740
857
|
export type RouteTokenTransformerConvention = RouteTokenTransformerConvention$instance & __RouteTokenTransformerConvention$views;
|
|
741
858
|
|
|
742
859
|
|
|
743
860
|
export interface SelectorModel$instance {
|
|
744
|
-
readonly
|
|
861
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_ApplicationModels_SelectorModel: never;
|
|
862
|
+
|
|
863
|
+
readonly ActionConstraints: IList_1<IActionConstraintMetadata>;
|
|
745
864
|
get AttributeRouteModel(): AttributeRouteModel | undefined;
|
|
746
865
|
set AttributeRouteModel(value: AttributeRouteModel | undefined);
|
|
747
|
-
readonly EndpointMetadata:
|
|
866
|
+
readonly EndpointMetadata: IList_1<unknown>;
|
|
748
867
|
}
|
|
749
868
|
|
|
750
869
|
|