@tsonic/dotnet 10.0.4 → 10.0.9
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.CSharp.RuntimeBinder/internal/index.d.ts +10 -0
- package/Microsoft.VisualBasic/internal/index.d.ts +42 -0
- package/Microsoft.VisualBasic.CompilerServices/internal/index.d.ts +60 -0
- package/Microsoft.VisualBasic.FileIO/internal/index.d.ts +12 -0
- package/Microsoft.Win32/internal/index.d.ts +5 -3
- package/Microsoft.Win32.SafeHandles/internal/index.d.ts +68 -0
- package/System/internal/index.d.ts +1438 -161
- package/System.Buffers/internal/index.d.ts +42 -6
- package/System.CodeDom.Compiler/internal/index.d.ts +7 -0
- package/System.Collections/internal/index.d.ts +109 -27
- package/System.Collections.Concurrent/internal/index.d.ts +52 -3
- package/System.Collections.Frozen/internal/index.d.ts +37 -0
- package/System.Collections.Generic/internal/index.d.ts +422 -33
- package/System.Collections.Immutable/internal/index.d.ts +193 -2
- package/System.Collections.ObjectModel/internal/index.d.ts +98 -6
- package/System.Collections.Specialized/internal/index.d.ts +72 -10
- package/System.ComponentModel/internal/index.d.ts +392 -23
- package/System.ComponentModel.DataAnnotations/internal/index.d.ts +79 -3
- package/System.ComponentModel.DataAnnotations.Schema/internal/index.d.ts +14 -0
- package/System.ComponentModel.Design/internal/index.d.ts +120 -3
- package/System.ComponentModel.Design.Serialization/internal/index.d.ts +40 -0
- package/System.Data/internal/index.d.ts +273 -20
- package/System.Data.Common/internal/index.d.ts +146 -32
- package/System.Data.SqlTypes/internal/index.d.ts +147 -48
- package/System.Diagnostics/internal/index.d.ts +213 -13
- package/System.Diagnostics.CodeAnalysis/internal/index.d.ts +52 -0
- package/System.Diagnostics.Contracts/internal/index.d.ts +28 -0
- package/System.Diagnostics.Metrics/internal/index.d.ts +37 -3
- package/System.Diagnostics.SymbolStore/internal/index.d.ts +30 -0
- package/System.Diagnostics.Tracing/internal/index.d.ts +56 -6
- package/System.Drawing/internal/index.d.ts +38 -0
- package/System.Dynamic/internal/index.d.ts +50 -5
- package/System.Formats.Asn1/internal/index.d.ts +19 -3
- package/System.Formats.Tar/internal/index.d.ts +26 -6
- package/System.Globalization/internal/index.d.ts +116 -20
- package/System.IO/internal/index.d.ts +141 -18
- package/System.IO.Compression/internal/index.d.ts +46 -9
- package/System.IO.Enumeration/internal/index.d.ts +13 -0
- package/System.IO.IsolatedStorage/internal/index.d.ts +18 -3
- package/System.IO.MemoryMappedFiles/internal/index.d.ts +13 -0
- package/System.IO.Pipelines/internal/index.d.ts +22 -2
- package/System.IO.Pipes/internal/index.d.ts +31 -0
- package/System.Linq/internal/index.d.ts +55 -7
- package/System.Linq.Expressions/internal/index.d.ts +103 -18
- package/System.Linq.Expressions.Interpreter/internal/index.d.ts +2 -0
- package/System.Net/internal/index.d.ts +202 -21
- package/System.Net.Cache/internal/index.d.ts +4 -0
- package/System.Net.Http/internal/index.d.ts +103 -0
- package/System.Net.Http.Headers/internal/index.d.ts +151 -60
- package/System.Net.Http.Json/internal/index.d.ts +4 -0
- package/System.Net.Http.Metrics/internal/index.d.ts +2 -0
- package/System.Net.Mail/internal/index.d.ts +88 -9
- package/System.Net.Mime/internal/index.d.ts +4 -0
- package/System.Net.NetworkInformation/internal/index.d.ts +89 -0
- package/System.Net.Quic/internal/index.d.ts +31 -6
- package/System.Net.Security/internal/index.d.ts +40 -3
- package/System.Net.ServerSentEvents/internal/index.d.ts +4 -0
- package/System.Net.Sockets/internal/index.d.ts +59 -6
- package/System.Net.WebSockets/internal/index.d.ts +32 -3
- package/System.Numerics/internal/index.d.ts +173 -7
- package/System.Reflection/internal/index.d.ts +202 -30
- package/System.Reflection.Emit/internal/index.d.ts +80 -9
- package/System.Reflection.Metadata/internal/index.d.ts +650 -5
- package/System.Reflection.Metadata.Ecma335/internal/index.d.ts +80 -0
- package/System.Reflection.PortableExecutable/internal/index.d.ts +39 -3
- package/System.Resources/internal/index.d.ts +35 -1
- package/System.Runtime/internal/index.d.ts +18 -6
- package/System.Runtime.CompilerServices/internal/index.d.ts +330 -33
- package/System.Runtime.ConstrainedExecution/internal/index.d.ts +6 -0
- package/System.Runtime.ExceptionServices/internal/index.d.ts +6 -0
- package/System.Runtime.InteropServices/internal/index.d.ts +268 -14
- package/System.Runtime.InteropServices.ComTypes/internal/index.d.ts +82 -0
- package/System.Runtime.InteropServices.Java/internal/index.d.ts +6 -0
- package/System.Runtime.InteropServices.JavaScript/internal/index.d.ts +59 -3
- package/System.Runtime.InteropServices.Marshalling/internal/index.d.ts +82 -12
- package/System.Runtime.InteropServices.ObjectiveC/internal/index.d.ts +2 -0
- package/System.Runtime.InteropServices.Swift/internal/index.d.ts +8 -0
- package/System.Runtime.Intrinsics/internal/index.d.ts +56 -12
- package/System.Runtime.Intrinsics.Arm/internal/index.d.ts +40 -0
- package/System.Runtime.Intrinsics.Wasm/internal/index.d.ts +2 -0
- package/System.Runtime.Intrinsics.X86/internal/index.d.ts +148 -0
- package/System.Runtime.Loader/internal/index.d.ts +9 -3
- package/System.Runtime.Remoting/internal/index.d.ts +2 -0
- package/System.Runtime.Serialization/internal/index.d.ts +111 -9
- package/System.Runtime.Serialization.DataContracts/internal/index.d.ts +8 -0
- package/System.Runtime.Serialization.Formatters/internal/index.d.ts +2 -0
- package/System.Runtime.Serialization.Formatters.Binary/internal/index.d.ts +5 -3
- package/System.Runtime.Serialization.Json/internal/index.d.ts +8 -0
- package/System.Runtime.Versioning/internal/index.d.ts +28 -0
- package/System.Security/internal/index.d.ts +46 -6
- package/System.Security.AccessControl/internal/index.d.ts +116 -2
- package/System.Security.Authentication/internal/index.d.ts +8 -0
- package/System.Security.Authentication.ExtendedProtection/internal/index.d.ts +16 -5
- package/System.Security.Claims/internal/index.d.ts +12 -6
- package/System.Security.Cryptography/internal/index.d.ts +568 -42
- package/System.Security.Cryptography.X509Certificates/internal/index.d.ts +114 -9
- package/System.Security.Permissions/internal/index.d.ts +6 -0
- package/System.Security.Policy/internal/index.d.ts +7 -0
- package/System.Security.Principal/internal/index.d.ts +42 -5
- package/System.Text/internal/index.d.ts +108 -8
- package/System.Text.Encodings.Web/internal/index.d.ts +10 -0
- package/System.Text.Json/internal/index.d.ts +53 -6
- package/System.Text.Json.Nodes/internal/index.d.ts +21 -0
- package/System.Text.Json.Schema/internal/index.d.ts +4 -0
- package/System.Text.Json.Serialization/internal/index.d.ts +64 -0
- package/System.Text.Json.Serialization.Metadata/internal/index.d.ts +27 -3
- package/System.Text.RegularExpressions/internal/index.d.ts +75 -3
- package/System.Text.Unicode/internal/index.d.ts +4 -0
- package/System.Threading/internal/index.d.ts +186 -24
- package/System.Threading.Channels/internal/index.d.ts +20 -0
- package/System.Threading.Tasks/internal/index.d.ts +48 -6
- package/System.Threading.Tasks.Dataflow/internal/index.d.ts +99 -0
- package/System.Threading.Tasks.Sources/internal/index.d.ts +6 -0
- package/System.Timers/internal/index.d.ts +11 -3
- package/System.Transactions/internal/index.d.ts +76 -15
- package/System.Web/internal/index.d.ts +4 -0
- package/System.Windows.Input/internal/index.d.ts +2 -0
- package/System.Windows.Markup/internal/index.d.ts +2 -0
- package/System.Xml/internal/index.d.ts +245 -20
- package/System.Xml.Linq/internal/index.d.ts +73 -17
- package/System.Xml.Resolvers/internal/index.d.ts +2 -0
- package/System.Xml.Schema/internal/index.d.ts +171 -0
- package/System.Xml.Serialization/internal/index.d.ts +141 -0
- package/System.Xml.XPath/internal/index.d.ts +27 -8
- package/System.Xml.Xsl/internal/index.d.ts +27 -0
- package/System.Xml.Xsl.Runtime/internal/index.d.ts +112 -0
- package/__internal/extensions/index.d.ts +2143 -1955
- package/package.json +2 -2
|
@@ -83,6 +83,8 @@ export type ServiceCreatorCallback = (container: IServiceContainer, serviceType:
|
|
|
83
83
|
|
|
84
84
|
|
|
85
85
|
export interface IComponentChangeService$instance {
|
|
86
|
+
readonly __tsonic_iface_System_ComponentModel_Design_IComponentChangeService: never;
|
|
87
|
+
|
|
86
88
|
OnComponentChanged(component: unknown, member: MemberDescriptor, oldValue: unknown, newValue: unknown): void;
|
|
87
89
|
OnComponentChanging(component: unknown, member: MemberDescriptor): void;
|
|
88
90
|
}
|
|
@@ -91,6 +93,8 @@ export interface IComponentChangeService$instance {
|
|
|
91
93
|
export type IComponentChangeService = IComponentChangeService$instance;
|
|
92
94
|
|
|
93
95
|
export interface IComponentDiscoveryService$instance {
|
|
96
|
+
readonly __tsonic_iface_System_ComponentModel_Design_IComponentDiscoveryService: never;
|
|
97
|
+
|
|
94
98
|
GetComponentTypes(designerHost: IDesignerHost, baseType: Type): ICollection;
|
|
95
99
|
}
|
|
96
100
|
|
|
@@ -98,6 +102,8 @@ export interface IComponentDiscoveryService$instance {
|
|
|
98
102
|
export type IComponentDiscoveryService = IComponentDiscoveryService$instance;
|
|
99
103
|
|
|
100
104
|
export interface IComponentInitializer$instance {
|
|
105
|
+
readonly __tsonic_iface_System_ComponentModel_Design_IComponentInitializer: never;
|
|
106
|
+
|
|
101
107
|
InitializeExistingComponent(defaultValues: IDictionary): void;
|
|
102
108
|
}
|
|
103
109
|
|
|
@@ -105,6 +111,8 @@ export interface IComponentInitializer$instance {
|
|
|
105
111
|
export type IComponentInitializer = IComponentInitializer$instance;
|
|
106
112
|
|
|
107
113
|
export interface IDesigner$instance extends IDisposable {
|
|
114
|
+
readonly __tsonic_iface_System_ComponentModel_Design_IDesigner: never;
|
|
115
|
+
|
|
108
116
|
readonly Component: IComponent;
|
|
109
117
|
readonly Verbs: DesignerVerbCollection | undefined;
|
|
110
118
|
DoDefaultAction(): void;
|
|
@@ -118,6 +126,8 @@ export interface IDesigner$instance extends System_Internal.IDisposable$instance
|
|
|
118
126
|
export type IDesigner = IDesigner$instance;
|
|
119
127
|
|
|
120
128
|
export interface IDesignerEventService$instance {
|
|
129
|
+
readonly __tsonic_iface_System_ComponentModel_Design_IDesignerEventService: never;
|
|
130
|
+
|
|
121
131
|
readonly ActiveDesigner: IDesignerHost | undefined;
|
|
122
132
|
readonly Designers: DesignerCollection;
|
|
123
133
|
}
|
|
@@ -126,6 +136,8 @@ export interface IDesignerEventService$instance {
|
|
|
126
136
|
export type IDesignerEventService = IDesignerEventService$instance;
|
|
127
137
|
|
|
128
138
|
export interface IDesignerFilter$instance {
|
|
139
|
+
readonly __tsonic_iface_System_ComponentModel_Design_IDesignerFilter: never;
|
|
140
|
+
|
|
129
141
|
PostFilterAttributes(attributes: IDictionary): void;
|
|
130
142
|
}
|
|
131
143
|
|
|
@@ -133,6 +145,8 @@ export interface IDesignerFilter$instance {
|
|
|
133
145
|
export type IDesignerFilter = IDesignerFilter$instance;
|
|
134
146
|
|
|
135
147
|
export interface IDesignerHost$instance extends IServiceContainer, IServiceProvider {
|
|
148
|
+
readonly __tsonic_iface_System_ComponentModel_Design_IDesignerHost: never;
|
|
149
|
+
|
|
136
150
|
readonly Loading: boolean;
|
|
137
151
|
readonly InTransaction: boolean;
|
|
138
152
|
readonly Container: IContainer;
|
|
@@ -160,6 +174,8 @@ export interface IDesignerHost$instance extends IServiceContainer, IServiceProvi
|
|
|
160
174
|
export type IDesignerHost = IDesignerHost$instance;
|
|
161
175
|
|
|
162
176
|
export interface IDesignerHostTransactionState$instance {
|
|
177
|
+
readonly __tsonic_iface_System_ComponentModel_Design_IDesignerHostTransactionState: never;
|
|
178
|
+
|
|
163
179
|
readonly IsClosingTransaction: boolean;
|
|
164
180
|
}
|
|
165
181
|
|
|
@@ -167,6 +183,8 @@ export interface IDesignerHostTransactionState$instance {
|
|
|
167
183
|
export type IDesignerHostTransactionState = IDesignerHostTransactionState$instance;
|
|
168
184
|
|
|
169
185
|
export interface IDesignerOptionService$instance {
|
|
186
|
+
readonly __tsonic_iface_System_ComponentModel_Design_IDesignerOptionService: never;
|
|
187
|
+
|
|
170
188
|
GetOptionValue(pageName: string, valueName: string): unknown | undefined;
|
|
171
189
|
SetOptionValue(pageName: string, valueName: string, value: unknown): void;
|
|
172
190
|
}
|
|
@@ -175,6 +193,8 @@ export interface IDesignerOptionService$instance {
|
|
|
175
193
|
export type IDesignerOptionService = IDesignerOptionService$instance;
|
|
176
194
|
|
|
177
195
|
export interface IDictionaryService$instance {
|
|
196
|
+
readonly __tsonic_iface_System_ComponentModel_Design_IDictionaryService: never;
|
|
197
|
+
|
|
178
198
|
GetKey(value: unknown): unknown | undefined;
|
|
179
199
|
SetValue(key: unknown, value: unknown): void;
|
|
180
200
|
}
|
|
@@ -183,6 +203,8 @@ export interface IDictionaryService$instance {
|
|
|
183
203
|
export type IDictionaryService = IDictionaryService$instance;
|
|
184
204
|
|
|
185
205
|
export interface IEventBindingService$instance {
|
|
206
|
+
readonly __tsonic_iface_System_ComponentModel_Design_IEventBindingService: never;
|
|
207
|
+
|
|
186
208
|
CreateUniqueMethodName(component: IComponent, e: EventDescriptor): string;
|
|
187
209
|
GetCompatibleMethods(e: EventDescriptor): ICollection;
|
|
188
210
|
GetEvent(property: PropertyDescriptor): EventDescriptor | undefined;
|
|
@@ -197,6 +219,8 @@ export interface IEventBindingService$instance {
|
|
|
197
219
|
export type IEventBindingService = IEventBindingService$instance;
|
|
198
220
|
|
|
199
221
|
export interface IExtenderListService$instance {
|
|
222
|
+
readonly __tsonic_iface_System_ComponentModel_Design_IExtenderListService: never;
|
|
223
|
+
|
|
200
224
|
GetExtenderProviders(): IExtenderProvider[];
|
|
201
225
|
}
|
|
202
226
|
|
|
@@ -204,6 +228,8 @@ export interface IExtenderListService$instance {
|
|
|
204
228
|
export type IExtenderListService = IExtenderListService$instance;
|
|
205
229
|
|
|
206
230
|
export interface IExtenderProviderService$instance {
|
|
231
|
+
readonly __tsonic_iface_System_ComponentModel_Design_IExtenderProviderService: never;
|
|
232
|
+
|
|
207
233
|
AddExtenderProvider(provider: IExtenderProvider): void;
|
|
208
234
|
}
|
|
209
235
|
|
|
@@ -211,6 +237,8 @@ export interface IExtenderProviderService$instance {
|
|
|
211
237
|
export type IExtenderProviderService = IExtenderProviderService$instance;
|
|
212
238
|
|
|
213
239
|
export interface IHelpService$instance {
|
|
240
|
+
readonly __tsonic_iface_System_ComponentModel_Design_IHelpService: never;
|
|
241
|
+
|
|
214
242
|
AddContextAttribute(name: string, value: string, keywordType: HelpKeywordType): void;
|
|
215
243
|
ClearContextAttributes(): void;
|
|
216
244
|
CreateLocalContext(contextType: HelpContextType): IHelpService;
|
|
@@ -223,6 +251,8 @@ export interface IHelpService$instance {
|
|
|
223
251
|
export type IHelpService = IHelpService$instance;
|
|
224
252
|
|
|
225
253
|
export interface IInheritanceService$instance {
|
|
254
|
+
readonly __tsonic_iface_System_ComponentModel_Design_IInheritanceService: never;
|
|
255
|
+
|
|
226
256
|
AddInheritedComponents(component: IComponent, container: IContainer): void;
|
|
227
257
|
GetInheritanceAttribute(component: IComponent): InheritanceAttribute;
|
|
228
258
|
}
|
|
@@ -231,6 +261,8 @@ export interface IInheritanceService$instance {
|
|
|
231
261
|
export type IInheritanceService = IInheritanceService$instance;
|
|
232
262
|
|
|
233
263
|
export interface IMenuCommandService$instance {
|
|
264
|
+
readonly __tsonic_iface_System_ComponentModel_Design_IMenuCommandService: never;
|
|
265
|
+
|
|
234
266
|
readonly Verbs: DesignerVerbCollection;
|
|
235
267
|
AddCommand(command: MenuCommand): void;
|
|
236
268
|
AddVerb(verb: DesignerVerb): void;
|
|
@@ -243,6 +275,8 @@ export interface IMenuCommandService$instance {
|
|
|
243
275
|
export type IMenuCommandService = IMenuCommandService$instance;
|
|
244
276
|
|
|
245
277
|
export interface IReferenceService$instance {
|
|
278
|
+
readonly __tsonic_iface_System_ComponentModel_Design_IReferenceService: never;
|
|
279
|
+
|
|
246
280
|
GetComponent(reference: unknown): IComponent | undefined;
|
|
247
281
|
GetName(reference: unknown): string | undefined;
|
|
248
282
|
GetReference(name: string): unknown | undefined;
|
|
@@ -254,6 +288,8 @@ export interface IReferenceService$instance {
|
|
|
254
288
|
export type IReferenceService = IReferenceService$instance;
|
|
255
289
|
|
|
256
290
|
export interface IResourceService$instance {
|
|
291
|
+
readonly __tsonic_iface_System_ComponentModel_Design_IResourceService: never;
|
|
292
|
+
|
|
257
293
|
GetResourceReader(info: CultureInfo): IResourceReader | undefined;
|
|
258
294
|
GetResourceWriter(info: CultureInfo): IResourceWriter;
|
|
259
295
|
}
|
|
@@ -262,6 +298,8 @@ export interface IResourceService$instance {
|
|
|
262
298
|
export type IResourceService = IResourceService$instance;
|
|
263
299
|
|
|
264
300
|
export interface IRootDesigner$instance extends IDesigner, IDisposable {
|
|
301
|
+
readonly __tsonic_iface_System_ComponentModel_Design_IRootDesigner: never;
|
|
302
|
+
|
|
265
303
|
readonly SupportedTechnologies: ViewTechnology[];
|
|
266
304
|
readonly Component: IComponent;
|
|
267
305
|
readonly Verbs: DesignerVerbCollection | undefined;
|
|
@@ -277,6 +315,8 @@ export interface IRootDesigner$instance extends IDesigner$instance {}
|
|
|
277
315
|
export type IRootDesigner = IRootDesigner$instance;
|
|
278
316
|
|
|
279
317
|
export interface ISelectionService$instance {
|
|
318
|
+
readonly __tsonic_iface_System_ComponentModel_Design_ISelectionService: never;
|
|
319
|
+
|
|
280
320
|
readonly PrimarySelection: unknown | undefined;
|
|
281
321
|
readonly SelectionCount: int;
|
|
282
322
|
GetComponentSelected(component: unknown): boolean;
|
|
@@ -289,6 +329,8 @@ export interface ISelectionService$instance {
|
|
|
289
329
|
export type ISelectionService = ISelectionService$instance;
|
|
290
330
|
|
|
291
331
|
export interface IServiceContainer$instance extends IServiceProvider {
|
|
332
|
+
readonly __tsonic_iface_System_ComponentModel_Design_IServiceContainer: never;
|
|
333
|
+
|
|
292
334
|
AddService(serviceType: Type, callback: ServiceCreatorCallback, promote: boolean): void;
|
|
293
335
|
AddService(serviceType: Type, callback: ServiceCreatorCallback): void;
|
|
294
336
|
AddService(serviceType: Type, serviceInstance: unknown, promote: boolean): void;
|
|
@@ -304,6 +346,8 @@ export interface IServiceContainer$instance extends System_Internal.IServiceProv
|
|
|
304
346
|
export type IServiceContainer = IServiceContainer$instance;
|
|
305
347
|
|
|
306
348
|
export interface ITreeDesigner$instance extends IDesigner, IDisposable {
|
|
349
|
+
readonly __tsonic_iface_System_ComponentModel_Design_ITreeDesigner: never;
|
|
350
|
+
|
|
307
351
|
readonly Children: ICollection;
|
|
308
352
|
readonly Parent: IDesigner | undefined;
|
|
309
353
|
readonly Component: IComponent;
|
|
@@ -319,6 +363,8 @@ export interface ITreeDesigner$instance extends IDesigner$instance {}
|
|
|
319
363
|
export type ITreeDesigner = ITreeDesigner$instance;
|
|
320
364
|
|
|
321
365
|
export interface ITypeDescriptorFilterService$instance {
|
|
366
|
+
readonly __tsonic_iface_System_ComponentModel_Design_ITypeDescriptorFilterService: never;
|
|
367
|
+
|
|
322
368
|
FilterAttributes(component: IComponent, attributes: IDictionary): boolean;
|
|
323
369
|
}
|
|
324
370
|
|
|
@@ -326,6 +372,8 @@ export interface ITypeDescriptorFilterService$instance {
|
|
|
326
372
|
export type ITypeDescriptorFilterService = ITypeDescriptorFilterService$instance;
|
|
327
373
|
|
|
328
374
|
export interface ITypeDiscoveryService$instance {
|
|
375
|
+
readonly __tsonic_iface_System_ComponentModel_Design_ITypeDiscoveryService: never;
|
|
376
|
+
|
|
329
377
|
GetTypes(baseType: Type, excludeGlobalTypes: boolean): ICollection;
|
|
330
378
|
}
|
|
331
379
|
|
|
@@ -333,6 +381,8 @@ export interface ITypeDiscoveryService$instance {
|
|
|
333
381
|
export type ITypeDiscoveryService = ITypeDiscoveryService$instance;
|
|
334
382
|
|
|
335
383
|
export interface ITypeResolutionService$instance {
|
|
384
|
+
readonly __tsonic_iface_System_ComponentModel_Design_ITypeResolutionService: never;
|
|
385
|
+
|
|
336
386
|
GetAssembly(name: AssemblyName, throwOnError: boolean): Assembly | undefined;
|
|
337
387
|
GetAssembly(name: AssemblyName): Assembly | undefined;
|
|
338
388
|
GetPathOfAssembly(name: AssemblyName): string | undefined;
|
|
@@ -346,6 +396,8 @@ export interface ITypeResolutionService$instance {
|
|
|
346
396
|
export type ITypeResolutionService = ITypeResolutionService$instance;
|
|
347
397
|
|
|
348
398
|
export interface ActiveDesignerEventArgs$instance extends EventArgs {
|
|
399
|
+
readonly __tsonic_type_System_ComponentModel_Design_ActiveDesignerEventArgs: never;
|
|
400
|
+
|
|
349
401
|
readonly NewDesigner: IDesignerHost | undefined;
|
|
350
402
|
readonly OldDesigner: IDesignerHost | undefined;
|
|
351
403
|
}
|
|
@@ -359,6 +411,10 @@ export const ActiveDesignerEventArgs: {
|
|
|
359
411
|
export type ActiveDesignerEventArgs = ActiveDesignerEventArgs$instance;
|
|
360
412
|
|
|
361
413
|
export interface CheckoutException$instance extends ExternalException {
|
|
414
|
+
readonly __tsonic_type_System_ComponentModel_Design_CheckoutException: never;
|
|
415
|
+
|
|
416
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
417
|
+
|
|
362
418
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
363
419
|
}
|
|
364
420
|
|
|
@@ -380,6 +436,8 @@ export type CheckoutException = CheckoutException$instance & __CheckoutException
|
|
|
380
436
|
|
|
381
437
|
|
|
382
438
|
export interface CommandID$instance {
|
|
439
|
+
readonly __tsonic_type_System_ComponentModel_Design_CommandID: never;
|
|
440
|
+
|
|
383
441
|
readonly Guid: Guid;
|
|
384
442
|
readonly ID: int;
|
|
385
443
|
Equals(obj: unknown): boolean;
|
|
@@ -396,6 +454,8 @@ export const CommandID: {
|
|
|
396
454
|
export type CommandID = CommandID$instance;
|
|
397
455
|
|
|
398
456
|
export interface ComponentChangedEventArgs$instance extends EventArgs {
|
|
457
|
+
readonly __tsonic_type_System_ComponentModel_Design_ComponentChangedEventArgs: never;
|
|
458
|
+
|
|
399
459
|
readonly Component: unknown | undefined;
|
|
400
460
|
readonly Member: MemberDescriptor | undefined;
|
|
401
461
|
readonly NewValue: unknown | undefined;
|
|
@@ -411,6 +471,8 @@ export const ComponentChangedEventArgs: {
|
|
|
411
471
|
export type ComponentChangedEventArgs = ComponentChangedEventArgs$instance;
|
|
412
472
|
|
|
413
473
|
export interface ComponentChangingEventArgs$instance extends EventArgs {
|
|
474
|
+
readonly __tsonic_type_System_ComponentModel_Design_ComponentChangingEventArgs: never;
|
|
475
|
+
|
|
414
476
|
readonly Component: unknown | undefined;
|
|
415
477
|
readonly Member: MemberDescriptor | undefined;
|
|
416
478
|
}
|
|
@@ -424,6 +486,8 @@ export const ComponentChangingEventArgs: {
|
|
|
424
486
|
export type ComponentChangingEventArgs = ComponentChangingEventArgs$instance;
|
|
425
487
|
|
|
426
488
|
export interface ComponentEventArgs$instance extends EventArgs {
|
|
489
|
+
readonly __tsonic_type_System_ComponentModel_Design_ComponentEventArgs: never;
|
|
490
|
+
|
|
427
491
|
readonly Component: IComponent | undefined;
|
|
428
492
|
}
|
|
429
493
|
|
|
@@ -436,6 +500,8 @@ export const ComponentEventArgs: {
|
|
|
436
500
|
export type ComponentEventArgs = ComponentEventArgs$instance;
|
|
437
501
|
|
|
438
502
|
export interface ComponentRenameEventArgs$instance extends EventArgs {
|
|
503
|
+
readonly __tsonic_type_System_ComponentModel_Design_ComponentRenameEventArgs: never;
|
|
504
|
+
|
|
439
505
|
readonly Component: unknown | undefined;
|
|
440
506
|
readonly NewName: string | undefined;
|
|
441
507
|
readonly OldName: string | undefined;
|
|
@@ -450,6 +516,11 @@ export const ComponentRenameEventArgs: {
|
|
|
450
516
|
export type ComponentRenameEventArgs = ComponentRenameEventArgs$instance;
|
|
451
517
|
|
|
452
518
|
export interface DesignerCollection$instance {
|
|
519
|
+
readonly __tsonic_type_System_ComponentModel_Design_DesignerCollection: never;
|
|
520
|
+
|
|
521
|
+
readonly __tsonic_iface_System_Collections_ICollection: never;
|
|
522
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
523
|
+
|
|
453
524
|
readonly Count: int;
|
|
454
525
|
readonly [index: number]: IDesignerHost | undefined;
|
|
455
526
|
GetEnumerator(): IEnumerator;
|
|
@@ -471,6 +542,8 @@ export type DesignerCollection = DesignerCollection$instance & __DesignerCollect
|
|
|
471
542
|
|
|
472
543
|
|
|
473
544
|
export interface DesignerEventArgs$instance extends EventArgs {
|
|
545
|
+
readonly __tsonic_type_System_ComponentModel_Design_DesignerEventArgs: never;
|
|
546
|
+
|
|
474
547
|
readonly Designer: IDesignerHost | undefined;
|
|
475
548
|
}
|
|
476
549
|
|
|
@@ -482,7 +555,11 @@ export const DesignerEventArgs: {
|
|
|
482
555
|
|
|
483
556
|
export type DesignerEventArgs = DesignerEventArgs$instance;
|
|
484
557
|
|
|
485
|
-
export interface DesignerOptionService$instance {
|
|
558
|
+
export interface DesignerOptionService$instance extends IDesignerOptionService$instance {
|
|
559
|
+
readonly __tsonic_type_System_ComponentModel_Design_DesignerOptionService: never;
|
|
560
|
+
|
|
561
|
+
readonly __tsonic_iface_System_ComponentModel_Design_IDesignerOptionService: never;
|
|
562
|
+
|
|
486
563
|
readonly Options: DesignerOptionService_DesignerOptionCollection;
|
|
487
564
|
PopulateOptionCollection(options: DesignerOptionService_DesignerOptionCollection): void;
|
|
488
565
|
ShowDialog(options: DesignerOptionService_DesignerOptionCollection, optionObject: unknown): boolean;
|
|
@@ -497,12 +574,16 @@ export interface __DesignerOptionService$views {
|
|
|
497
574
|
As_IDesignerOptionService(): IDesignerOptionService$instance;
|
|
498
575
|
}
|
|
499
576
|
|
|
500
|
-
export interface DesignerOptionService$instance extends IDesignerOptionService$instance {}
|
|
501
|
-
|
|
502
577
|
export type DesignerOptionService = DesignerOptionService$instance & __DesignerOptionService$views;
|
|
503
578
|
|
|
504
579
|
|
|
505
580
|
export interface DesignerOptionService_DesignerOptionCollection$instance {
|
|
581
|
+
readonly __tsonic_type_System_ComponentModel_Design_DesignerOptionService_DesignerOptionCollection: never;
|
|
582
|
+
|
|
583
|
+
readonly __tsonic_iface_System_Collections_ICollection: never;
|
|
584
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
585
|
+
readonly __tsonic_iface_System_Collections_IList: never;
|
|
586
|
+
|
|
506
587
|
readonly Count: int;
|
|
507
588
|
readonly Name: string;
|
|
508
589
|
readonly Parent: DesignerOptionService_DesignerOptionCollection | undefined;
|
|
@@ -530,6 +611,10 @@ export type DesignerOptionService_DesignerOptionCollection = DesignerOptionServi
|
|
|
530
611
|
|
|
531
612
|
|
|
532
613
|
export interface DesignerTransaction$instance {
|
|
614
|
+
readonly __tsonic_type_System_ComponentModel_Design_DesignerTransaction: never;
|
|
615
|
+
|
|
616
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
617
|
+
|
|
533
618
|
Canceled: boolean;
|
|
534
619
|
Committed: boolean;
|
|
535
620
|
readonly Description: string;
|
|
@@ -554,6 +639,8 @@ export type DesignerTransaction = DesignerTransaction$instance & __DesignerTrans
|
|
|
554
639
|
|
|
555
640
|
|
|
556
641
|
export interface DesignerTransactionCloseEventArgs$instance extends EventArgs {
|
|
642
|
+
readonly __tsonic_type_System_ComponentModel_Design_DesignerTransactionCloseEventArgs: never;
|
|
643
|
+
|
|
557
644
|
readonly LastTransaction: boolean;
|
|
558
645
|
readonly TransactionCommitted: boolean;
|
|
559
646
|
}
|
|
@@ -568,6 +655,8 @@ export const DesignerTransactionCloseEventArgs: {
|
|
|
568
655
|
export type DesignerTransactionCloseEventArgs = DesignerTransactionCloseEventArgs$instance;
|
|
569
656
|
|
|
570
657
|
export interface DesignerVerb$instance extends MenuCommand {
|
|
658
|
+
readonly __tsonic_type_System_ComponentModel_Design_DesignerVerb: never;
|
|
659
|
+
|
|
571
660
|
Description: string;
|
|
572
661
|
readonly Text: string;
|
|
573
662
|
ToString(): string;
|
|
@@ -583,6 +672,12 @@ export const DesignerVerb: {
|
|
|
583
672
|
export type DesignerVerb = DesignerVerb$instance;
|
|
584
673
|
|
|
585
674
|
export interface DesignerVerbCollection$instance extends CollectionBase {
|
|
675
|
+
readonly __tsonic_type_System_ComponentModel_Design_DesignerVerbCollection: never;
|
|
676
|
+
|
|
677
|
+
readonly __tsonic_iface_System_Collections_ICollection: never;
|
|
678
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
679
|
+
readonly __tsonic_iface_System_Collections_IList: never;
|
|
680
|
+
|
|
586
681
|
[index: number]: DesignerVerb;
|
|
587
682
|
Add(value: unknown): int;
|
|
588
683
|
AddRange(value: DesignerVerb[]): void;
|
|
@@ -615,6 +710,10 @@ export type DesignerVerbCollection = DesignerVerbCollection$instance & __Designe
|
|
|
615
710
|
|
|
616
711
|
|
|
617
712
|
export interface DesigntimeLicenseContext$instance extends LicenseContext {
|
|
713
|
+
readonly __tsonic_type_System_ComponentModel_Design_DesigntimeLicenseContext: never;
|
|
714
|
+
|
|
715
|
+
readonly __tsonic_iface_System_IServiceProvider: never;
|
|
716
|
+
|
|
618
717
|
readonly UsageMode: LicenseUsageMode;
|
|
619
718
|
GetSavedLicenseKey(type: Type, resourceAssembly: Assembly): string | undefined;
|
|
620
719
|
GetService(type: Type): unknown | undefined;
|
|
@@ -635,6 +734,8 @@ export type DesigntimeLicenseContext = DesigntimeLicenseContext$instance & __Des
|
|
|
635
734
|
|
|
636
735
|
|
|
637
736
|
export interface DesigntimeLicenseContextSerializer$instance {
|
|
737
|
+
readonly __tsonic_type_System_ComponentModel_Design_DesigntimeLicenseContextSerializer: never;
|
|
738
|
+
|
|
638
739
|
}
|
|
639
740
|
|
|
640
741
|
|
|
@@ -646,6 +747,8 @@ export const DesigntimeLicenseContextSerializer: {
|
|
|
646
747
|
export type DesigntimeLicenseContextSerializer = DesigntimeLicenseContextSerializer$instance;
|
|
647
748
|
|
|
648
749
|
export interface HelpKeywordAttribute$instance extends Attribute {
|
|
750
|
+
readonly __tsonic_type_System_ComponentModel_Design_HelpKeywordAttribute: never;
|
|
751
|
+
|
|
649
752
|
readonly HelpKeyword: string | undefined;
|
|
650
753
|
Equals(obj: unknown): boolean;
|
|
651
754
|
GetHashCode(): int;
|
|
@@ -664,6 +767,8 @@ export const HelpKeywordAttribute: {
|
|
|
664
767
|
export type HelpKeywordAttribute = HelpKeywordAttribute$instance;
|
|
665
768
|
|
|
666
769
|
export interface MenuCommand$instance {
|
|
770
|
+
readonly __tsonic_type_System_ComponentModel_Design_MenuCommand: never;
|
|
771
|
+
|
|
667
772
|
Checked: boolean;
|
|
668
773
|
readonly CommandID: CommandID | undefined;
|
|
669
774
|
Enabled: boolean;
|
|
@@ -686,6 +791,12 @@ export const MenuCommand: {
|
|
|
686
791
|
export type MenuCommand = MenuCommand$instance;
|
|
687
792
|
|
|
688
793
|
export interface ServiceContainer$instance {
|
|
794
|
+
readonly __tsonic_type_System_ComponentModel_Design_ServiceContainer: never;
|
|
795
|
+
|
|
796
|
+
readonly __tsonic_iface_System_ComponentModel_Design_IServiceContainer: never;
|
|
797
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
798
|
+
readonly __tsonic_iface_System_IServiceProvider: never;
|
|
799
|
+
|
|
689
800
|
readonly DefaultServices: Type[];
|
|
690
801
|
AddService(serviceType: Type, serviceInstance: unknown): void;
|
|
691
802
|
AddService(serviceType: Type, serviceInstance: unknown, promote: boolean): void;
|
|
@@ -715,6 +826,8 @@ export type ServiceContainer = ServiceContainer$instance & __ServiceContainer$vi
|
|
|
715
826
|
|
|
716
827
|
|
|
717
828
|
export interface StandardCommands$instance {
|
|
829
|
+
readonly __tsonic_type_System_ComponentModel_Design_StandardCommands: never;
|
|
830
|
+
|
|
718
831
|
}
|
|
719
832
|
|
|
720
833
|
|
|
@@ -781,6 +894,8 @@ export const StandardCommands: {
|
|
|
781
894
|
export type StandardCommands = StandardCommands$instance;
|
|
782
895
|
|
|
783
896
|
export interface StandardToolWindows$instance {
|
|
897
|
+
readonly __tsonic_type_System_ComponentModel_Design_StandardToolWindows: never;
|
|
898
|
+
|
|
784
899
|
}
|
|
785
900
|
|
|
786
901
|
|
|
@@ -800,6 +915,8 @@ export const StandardToolWindows: {
|
|
|
800
915
|
export type StandardToolWindows = StandardToolWindows$instance;
|
|
801
916
|
|
|
802
917
|
export interface TypeDescriptionProviderService$instance {
|
|
918
|
+
readonly __tsonic_type_System_ComponentModel_Design_TypeDescriptionProviderService: never;
|
|
919
|
+
|
|
803
920
|
GetProvider(instance: unknown): TypeDescriptionProvider;
|
|
804
921
|
GetProvider(type: Type): TypeDescriptionProvider;
|
|
805
922
|
}
|
|
@@ -21,6 +21,8 @@ export type ResolveNameEventHandler = (sender: unknown, e: ResolveNameEventArgs)
|
|
|
21
21
|
|
|
22
22
|
|
|
23
23
|
export interface IDesignerLoaderHost$instance extends IDesignerHost, IServiceContainer, IServiceProvider {
|
|
24
|
+
readonly __tsonic_iface_System_ComponentModel_Design_Serialization_IDesignerLoaderHost: never;
|
|
25
|
+
|
|
24
26
|
readonly Loading: boolean;
|
|
25
27
|
readonly InTransaction: boolean;
|
|
26
28
|
readonly Container: IContainer;
|
|
@@ -50,6 +52,8 @@ export interface IDesignerLoaderHost$instance extends IDesignerHost, IServiceCon
|
|
|
50
52
|
export type IDesignerLoaderHost = IDesignerLoaderHost$instance;
|
|
51
53
|
|
|
52
54
|
export interface IDesignerLoaderHost2$instance extends IDesignerLoaderHost, IDesignerHost, IServiceContainer, IServiceProvider {
|
|
55
|
+
readonly __tsonic_iface_System_ComponentModel_Design_Serialization_IDesignerLoaderHost2: never;
|
|
56
|
+
|
|
53
57
|
IgnoreErrorsDuringReload: boolean;
|
|
54
58
|
CanReloadWithErrors: boolean;
|
|
55
59
|
readonly Loading: boolean;
|
|
@@ -81,6 +85,8 @@ export interface IDesignerLoaderHost2$instance extends IDesignerLoaderHost, IDes
|
|
|
81
85
|
export type IDesignerLoaderHost2 = IDesignerLoaderHost2$instance;
|
|
82
86
|
|
|
83
87
|
export interface IDesignerLoaderService$instance {
|
|
88
|
+
readonly __tsonic_iface_System_ComponentModel_Design_Serialization_IDesignerLoaderService: never;
|
|
89
|
+
|
|
84
90
|
AddLoadDependency(): void;
|
|
85
91
|
DependentLoadComplete(successful: boolean, errorCollection: ICollection): void;
|
|
86
92
|
Reload(): boolean;
|
|
@@ -90,6 +96,8 @@ export interface IDesignerLoaderService$instance {
|
|
|
90
96
|
export type IDesignerLoaderService = IDesignerLoaderService$instance;
|
|
91
97
|
|
|
92
98
|
export interface IDesignerSerializationManager$instance extends IServiceProvider {
|
|
99
|
+
readonly __tsonic_iface_System_ComponentModel_Design_Serialization_IDesignerSerializationManager: never;
|
|
100
|
+
|
|
93
101
|
readonly Context: ContextStack;
|
|
94
102
|
readonly Properties: PropertyDescriptorCollection;
|
|
95
103
|
AddSerializationProvider(provider: IDesignerSerializationProvider): void;
|
|
@@ -109,6 +117,8 @@ export interface IDesignerSerializationManager$instance extends System_Internal.
|
|
|
109
117
|
export type IDesignerSerializationManager = IDesignerSerializationManager$instance;
|
|
110
118
|
|
|
111
119
|
export interface IDesignerSerializationProvider$instance {
|
|
120
|
+
readonly __tsonic_iface_System_ComponentModel_Design_Serialization_IDesignerSerializationProvider: never;
|
|
121
|
+
|
|
112
122
|
GetSerializer(manager: IDesignerSerializationManager, currentSerializer: unknown, objectType: Type, serializerType: Type): unknown | undefined;
|
|
113
123
|
}
|
|
114
124
|
|
|
@@ -116,6 +126,8 @@ export interface IDesignerSerializationProvider$instance {
|
|
|
116
126
|
export type IDesignerSerializationProvider = IDesignerSerializationProvider$instance;
|
|
117
127
|
|
|
118
128
|
export interface IDesignerSerializationService$instance {
|
|
129
|
+
readonly __tsonic_iface_System_ComponentModel_Design_Serialization_IDesignerSerializationService: never;
|
|
130
|
+
|
|
119
131
|
Deserialize(serializationData: unknown): ICollection;
|
|
120
132
|
Serialize(objects: ICollection): unknown;
|
|
121
133
|
}
|
|
@@ -124,6 +136,8 @@ export interface IDesignerSerializationService$instance {
|
|
|
124
136
|
export type IDesignerSerializationService = IDesignerSerializationService$instance;
|
|
125
137
|
|
|
126
138
|
export interface INameCreationService$instance {
|
|
139
|
+
readonly __tsonic_iface_System_ComponentModel_Design_Serialization_INameCreationService: never;
|
|
140
|
+
|
|
127
141
|
CreateName(container: IContainer, dataType: Type): string;
|
|
128
142
|
IsValidName(name: string): boolean;
|
|
129
143
|
ValidateName(name: string): void;
|
|
@@ -133,6 +147,10 @@ export interface INameCreationService$instance {
|
|
|
133
147
|
export type INameCreationService = INameCreationService$instance;
|
|
134
148
|
|
|
135
149
|
export interface MemberRelationship$instance {
|
|
150
|
+
readonly __tsonic_type_System_ComponentModel_Design_Serialization_MemberRelationship: never;
|
|
151
|
+
|
|
152
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
153
|
+
|
|
136
154
|
readonly IsEmpty: boolean;
|
|
137
155
|
readonly Member: MemberDescriptor;
|
|
138
156
|
readonly Owner: unknown | undefined;
|
|
@@ -159,6 +177,8 @@ export type MemberRelationship = MemberRelationship$instance & __MemberRelations
|
|
|
159
177
|
|
|
160
178
|
|
|
161
179
|
export interface ComponentSerializationService$instance {
|
|
180
|
+
readonly __tsonic_type_System_ComponentModel_Design_Serialization_ComponentSerializationService: never;
|
|
181
|
+
|
|
162
182
|
CreateStore(): SerializationStore;
|
|
163
183
|
Deserialize(store: SerializationStore): ICollection;
|
|
164
184
|
Deserialize(store: SerializationStore, container: IContainer): ICollection;
|
|
@@ -180,6 +200,8 @@ export const ComponentSerializationService: (abstract new() => ComponentSerializ
|
|
|
180
200
|
export type ComponentSerializationService = ComponentSerializationService$instance;
|
|
181
201
|
|
|
182
202
|
export interface ContextStack$instance {
|
|
203
|
+
readonly __tsonic_type_System_ComponentModel_Design_Serialization_ContextStack: never;
|
|
204
|
+
|
|
183
205
|
readonly Current: unknown | undefined;
|
|
184
206
|
Append(context: unknown): void;
|
|
185
207
|
get_Item(level: int): unknown | undefined;
|
|
@@ -197,6 +219,8 @@ export const ContextStack: {
|
|
|
197
219
|
export type ContextStack = ContextStack$instance;
|
|
198
220
|
|
|
199
221
|
export interface DefaultSerializationProviderAttribute$instance extends Attribute {
|
|
222
|
+
readonly __tsonic_type_System_ComponentModel_Design_Serialization_DefaultSerializationProviderAttribute: never;
|
|
223
|
+
|
|
200
224
|
readonly ProviderTypeName: string;
|
|
201
225
|
}
|
|
202
226
|
|
|
@@ -210,6 +234,8 @@ export const DefaultSerializationProviderAttribute: {
|
|
|
210
234
|
export type DefaultSerializationProviderAttribute = DefaultSerializationProviderAttribute$instance;
|
|
211
235
|
|
|
212
236
|
export interface DesignerLoader$instance {
|
|
237
|
+
readonly __tsonic_type_System_ComponentModel_Design_Serialization_DesignerLoader: never;
|
|
238
|
+
|
|
213
239
|
readonly Loading: boolean;
|
|
214
240
|
BeginLoad(host: IDesignerLoaderHost): void;
|
|
215
241
|
Dispose(): void;
|
|
@@ -224,6 +250,8 @@ export const DesignerLoader: (abstract new() => DesignerLoader) & {
|
|
|
224
250
|
export type DesignerLoader = DesignerLoader$instance;
|
|
225
251
|
|
|
226
252
|
export interface DesignerSerializerAttribute$instance extends Attribute {
|
|
253
|
+
readonly __tsonic_type_System_ComponentModel_Design_Serialization_DesignerSerializerAttribute: never;
|
|
254
|
+
|
|
227
255
|
readonly SerializerBaseTypeName: string | undefined;
|
|
228
256
|
readonly SerializerTypeName: string | undefined;
|
|
229
257
|
readonly TypeId: unknown;
|
|
@@ -240,6 +268,8 @@ export const DesignerSerializerAttribute: {
|
|
|
240
268
|
export type DesignerSerializerAttribute = DesignerSerializerAttribute$instance;
|
|
241
269
|
|
|
242
270
|
export interface InstanceDescriptor$instance {
|
|
271
|
+
readonly __tsonic_type_System_ComponentModel_Design_Serialization_InstanceDescriptor: never;
|
|
272
|
+
|
|
243
273
|
readonly Arguments: ICollection;
|
|
244
274
|
readonly IsComplete: boolean;
|
|
245
275
|
readonly MemberInfo: MemberInfo | undefined;
|
|
@@ -256,6 +286,8 @@ export const InstanceDescriptor: {
|
|
|
256
286
|
export type InstanceDescriptor = InstanceDescriptor$instance;
|
|
257
287
|
|
|
258
288
|
export interface MemberRelationshipService$instance {
|
|
289
|
+
readonly __tsonic_type_System_ComponentModel_Design_Serialization_MemberRelationshipService: never;
|
|
290
|
+
|
|
259
291
|
get_Item(source: MemberRelationship): MemberRelationship;
|
|
260
292
|
get_Item(sourceOwner: unknown, sourceMember: MemberDescriptor): MemberRelationship;
|
|
261
293
|
GetRelationship(source: MemberRelationship): MemberRelationship;
|
|
@@ -273,6 +305,8 @@ export const MemberRelationshipService: (abstract new() => MemberRelationshipSer
|
|
|
273
305
|
export type MemberRelationshipService = MemberRelationshipService$instance;
|
|
274
306
|
|
|
275
307
|
export interface ResolveNameEventArgs$instance extends EventArgs {
|
|
308
|
+
readonly __tsonic_type_System_ComponentModel_Design_Serialization_ResolveNameEventArgs: never;
|
|
309
|
+
|
|
276
310
|
readonly Name: string | undefined;
|
|
277
311
|
get Value(): unknown | undefined;
|
|
278
312
|
set Value(value: unknown | undefined);
|
|
@@ -287,6 +321,8 @@ export const ResolveNameEventArgs: {
|
|
|
287
321
|
export type ResolveNameEventArgs = ResolveNameEventArgs$instance;
|
|
288
322
|
|
|
289
323
|
export interface RootDesignerSerializerAttribute$instance extends Attribute {
|
|
324
|
+
readonly __tsonic_type_System_ComponentModel_Design_Serialization_RootDesignerSerializerAttribute: never;
|
|
325
|
+
|
|
290
326
|
readonly Reloadable: boolean;
|
|
291
327
|
readonly SerializerBaseTypeName: string | undefined;
|
|
292
328
|
readonly SerializerTypeName: string | undefined;
|
|
@@ -304,6 +340,10 @@ export const RootDesignerSerializerAttribute: {
|
|
|
304
340
|
export type RootDesignerSerializerAttribute = RootDesignerSerializerAttribute$instance;
|
|
305
341
|
|
|
306
342
|
export interface SerializationStore$instance {
|
|
343
|
+
readonly __tsonic_type_System_ComponentModel_Design_Serialization_SerializationStore: never;
|
|
344
|
+
|
|
345
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
346
|
+
|
|
307
347
|
readonly Errors: ICollection;
|
|
308
348
|
Close(): void;
|
|
309
349
|
Dispose(disposing: boolean): void;
|