@bettergi/types 0.1.12 → 0.1.14

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.
Files changed (1404) hide show
  1. package/LICENSE +20 -20
  2. package/bindings/AutoBossParam.d.ts +12 -0
  3. package/bindings/AutoDomainParam.d.ts +12 -0
  4. package/bindings/AutoFightParam.d.ts +12 -0
  5. package/bindings/AutoLeyLineOutcropParam.d.ts +13 -0
  6. package/bindings/AutoSkipConfig.d.ts +12 -0
  7. package/bindings/AutoStygianOnslaughtParam.d.ts +13 -0
  8. package/bindings/Avatar.d.ts +12 -0
  9. package/bindings/BvImage.d.ts +12 -0
  10. package/bindings/BvLocator.d.ts +12 -0
  11. package/bindings/BvPage.d.ts +12 -0
  12. package/bindings/CancellationToken.d.ts +12 -0
  13. package/bindings/CancellationTokenSource.d.ts +12 -0
  14. package/bindings/CombatScenes.d.ts +12 -0
  15. package/bindings/CountInventoryItemParam.d.ts +12 -0
  16. package/bindings/DesktopRegion.d.ts +12 -0
  17. package/bindings/GameCaptureRegion.d.ts +12 -0
  18. package/bindings/GridScreenName.d.ts +12 -0
  19. package/bindings/ImageRegion.d.ts +12 -0
  20. package/bindings/ItemIconRecognitionMode.d.ts +12 -0
  21. package/bindings/KeyMouseHook.d.ts +12 -0
  22. package/bindings/Mat.d.ts +12 -0
  23. package/bindings/OpenCvSharp.d.ts +1035 -0
  24. package/bindings/Point2f.d.ts +12 -0
  25. package/bindings/PostMessage.d.ts +12 -0
  26. package/bindings/RealtimeTimer.d.ts +12 -0
  27. package/bindings/RecognitionObject.d.ts +12 -0
  28. package/bindings/Region.d.ts +12 -0
  29. package/bindings/ServerTime.d.ts +12 -0
  30. package/bindings/SoloTask.d.ts +12 -0
  31. package/bindings/Task.d.ts +12 -0
  32. package/bindings/captureGameRegion.d.ts +17 -0
  33. package/bindings/click.d.ts +21 -0
  34. package/bindings/dispatcher.d.ts +11 -0
  35. package/bindings/file.d.ts +11 -0
  36. package/bindings/genshin.d.ts +11 -0
  37. package/bindings/getAvatars.d.ts +16 -0
  38. package/bindings/getGameMetrics.d.ts +16 -0
  39. package/bindings/getVersion.d.ts +16 -0
  40. package/bindings/host.d.ts +30 -0
  41. package/bindings/htmlMask.d.ts +11 -0
  42. package/bindings/http.d.ts +11 -0
  43. package/bindings/inputText.d.ts +17 -0
  44. package/bindings/keyDown.d.ts +18 -0
  45. package/bindings/keyMouseScript.d.ts +11 -0
  46. package/bindings/keyPress.d.ts +18 -0
  47. package/bindings/keyUp.d.ts +18 -0
  48. package/bindings/leftButtonClick.d.ts +17 -0
  49. package/bindings/leftButtonDown.d.ts +17 -0
  50. package/bindings/leftButtonUp.d.ts +17 -0
  51. package/bindings/log.d.ts +11 -0
  52. package/bindings/middleButtonClick.d.ts +17 -0
  53. package/bindings/middleButtonDown.d.ts +17 -0
  54. package/bindings/middleButtonUp.d.ts +17 -0
  55. package/bindings/moveMouseBy.d.ts +21 -0
  56. package/bindings/moveMouseTo.d.ts +21 -0
  57. package/bindings/notification.d.ts +11 -0
  58. package/bindings/pathingScript.d.ts +11 -0
  59. package/bindings/rightButtonClick.d.ts +17 -0
  60. package/bindings/rightButtonDown.d.ts +17 -0
  61. package/bindings/rightButtonUp.d.ts +17 -0
  62. package/bindings/setGameMetrics.d.ts +38 -0
  63. package/bindings/settings.d.ts +8 -0
  64. package/bindings/sleep.d.ts +20 -0
  65. package/bindings/strategyFile.d.ts +11 -0
  66. package/bindings/verticalScroll.d.ts +21 -0
  67. package/index.d.ts +104 -62
  68. package/package.json +15 -4
  69. package/types/BetterGI/ScriptSettings.d.ts +22 -0
  70. package/types/BetterGenshinImpact/Core/BgiVision/BvImage.d.ts +54 -0
  71. package/types/BetterGenshinImpact/Core/BgiVision/BvLocator.d.ts +202 -0
  72. package/types/BetterGenshinImpact/Core/BgiVision/BvPage.d.ts +145 -0
  73. package/types/BetterGenshinImpact/Core/Recognition/ONNX/BgiYoloPredictor.d.ts +54 -0
  74. package/types/BetterGenshinImpact/Core/Recognition/OcrEngineTypes.d.ts +39 -10
  75. package/types/BetterGenshinImpact/Core/Recognition/RecognitionObject.d.ts +290 -190
  76. package/types/BetterGenshinImpact/Core/Recognition/RecognitionTypes.d.ts +59 -21
  77. package/types/BetterGenshinImpact/Core/Recognition/SearchOptions.d.ts +100 -0
  78. package/types/BetterGenshinImpact/Core/Script/Dependence/AutoPathingScript.d.ts +91 -0
  79. package/types/BetterGenshinImpact/Core/Script/Dependence/CustomHostFunctions.d.ts +48 -0
  80. package/types/BetterGenshinImpact/Core/Script/Dependence/Dispatcher.d.ts +203 -0
  81. package/types/BetterGenshinImpact/Core/Script/Dependence/Genshin.d.ts +438 -0
  82. package/types/BetterGenshinImpact/Core/Script/Dependence/HtmlMask.d.ts +203 -0
  83. package/types/BetterGenshinImpact/Core/Script/Dependence/Http.d.ts +102 -0
  84. package/types/BetterGenshinImpact/Core/Script/Dependence/KeyMouseHook.d.ts +106 -68
  85. package/types/BetterGenshinImpact/Core/Script/Dependence/KeyMouseScript.d.ts +45 -0
  86. package/types/BetterGenshinImpact/Core/Script/Dependence/LimitedFile.d.ts +180 -0
  87. package/types/BetterGenshinImpact/Core/Script/Dependence/Log.d.ts +72 -0
  88. package/types/BetterGenshinImpact/Core/Script/Dependence/Model/RealtimeTimer.d.ts +55 -28
  89. package/types/BetterGenshinImpact/Core/Script/Dependence/Model/SoloTask.d.ts +51 -14
  90. package/types/BetterGenshinImpact/Core/Script/Dependence/Notification.d.ts +49 -0
  91. package/types/BetterGenshinImpact/Core/Script/Dependence/ServerTime.d.ts +25 -5
  92. package/types/BetterGenshinImpact/Core/Script/Dependence/Simulator/PostMessage.d.ts +57 -12
  93. package/types/BetterGenshinImpact/Core/Script/Dependence/StrategyFile.d.ts +66 -0
  94. package/types/BetterGenshinImpact/GameTask/AutoBoss/AutoBossConfig.d.ts +102 -0
  95. package/types/BetterGenshinImpact/GameTask/AutoBoss/AutoBossParam.d.ts +135 -0
  96. package/types/BetterGenshinImpact/GameTask/AutoBoss/AutoBossTask.d.ts +55 -0
  97. package/types/BetterGenshinImpact/GameTask/AutoDomain/AutoDomainParam.d.ts +160 -66
  98. package/types/BetterGenshinImpact/GameTask/AutoDomain/AutoDomainTask.d.ts +89 -30
  99. package/types/BetterGenshinImpact/GameTask/AutoFight/Assets/AutoFightAssets.d.ts +144 -0
  100. package/types/BetterGenshinImpact/GameTask/AutoFight/AutoFightConfig.d.ts +266 -0
  101. package/types/BetterGenshinImpact/GameTask/AutoFight/AutoFightParam.d.ts +252 -105
  102. package/types/BetterGenshinImpact/GameTask/AutoFight/AutoFightTask.d.ts +69 -31
  103. package/types/BetterGenshinImpact/GameTask/AutoFight/Config/CombatAvatar.d.ts +67 -25
  104. package/types/BetterGenshinImpact/GameTask/AutoFight/Model/Avatar.d.ts +373 -161
  105. package/types/BetterGenshinImpact/GameTask/AutoFight/Model/AvatarActiveCheckContext.d.ts +39 -5
  106. package/types/BetterGenshinImpact/GameTask/AutoFight/Model/CombatScenes.d.ts +237 -58
  107. package/types/BetterGenshinImpact/GameTask/AutoFight/Model/MultiGameStatus.d.ts +48 -13
  108. package/types/BetterGenshinImpact/GameTask/AutoFight/Script/CombatCommand.d.ts +82 -0
  109. package/types/BetterGenshinImpact/GameTask/AutoFight/Script/CombatScript.d.ts +63 -0
  110. package/types/BetterGenshinImpact/GameTask/AutoFight/Script/Method.d.ts +171 -0
  111. package/types/BetterGenshinImpact/GameTask/AutoLeyLineOutcrop/AutoLeyLineOutcropConfig.d.ts +141 -0
  112. package/types/BetterGenshinImpact/GameTask/AutoLeyLineOutcrop/AutoLeyLineOutcropFightConfig.d.ts +252 -0
  113. package/types/BetterGenshinImpact/GameTask/AutoLeyLineOutcrop/AutoLeyLineOutcropParam.d.ts +174 -0
  114. package/types/BetterGenshinImpact/GameTask/AutoLeyLineOutcrop/AutoLeyLineOutcropTask.d.ts +57 -0
  115. package/types/BetterGenshinImpact/GameTask/AutoPathing/Model/MaterialInfo.d.ts +49 -0
  116. package/types/BetterGenshinImpact/GameTask/AutoPathing/Model/Waypoint.d.ts +173 -0
  117. package/types/BetterGenshinImpact/GameTask/AutoPathing/Model/WaypointForTrack.d.ts +105 -0
  118. package/types/BetterGenshinImpact/GameTask/AutoPathing/NavigationInstance.d.ts +102 -0
  119. package/types/BetterGenshinImpact/GameTask/AutoPathing/PathingScriptNames.d.ts +82 -0
  120. package/types/BetterGenshinImpact/GameTask/AutoSkip/AutoSkipConfig.d.ts +212 -107
  121. package/types/BetterGenshinImpact/GameTask/AutoStygianOnslaught/AutoStygianOnslaughtConfig.d.ts +104 -0
  122. package/types/BetterGenshinImpact/GameTask/AutoStygianOnslaught/AutoStygianOnslaughtParam.d.ts +143 -0
  123. package/types/BetterGenshinImpact/GameTask/AutoStygianOnslaught/AutoStygianOnslaughtTask.d.ts +191 -0
  124. package/types/BetterGenshinImpact/GameTask/CaptureContent.d.ts +87 -0
  125. package/types/BetterGenshinImpact/GameTask/Common/BgiVision/BvStatus.d.ts +50 -0
  126. package/types/BetterGenshinImpact/GameTask/Common/Job/CountInventoryItemParam.d.ts +70 -0
  127. package/types/BetterGenshinImpact/GameTask/Common/Job/CraftMaterialTask.d.ts +85 -0
  128. package/types/BetterGenshinImpact/GameTask/Common/Job/ItemIconRecognitionMode.d.ts +43 -0
  129. package/types/BetterGenshinImpact/GameTask/Common/Map/MapScriptNames.d.ts +46 -0
  130. package/types/BetterGenshinImpact/GameTask/Common/Reward/RewardItem.d.ts +80 -0
  131. package/types/BetterGenshinImpact/GameTask/Common/StateMachine/StateMachineBase.d.ts +43 -0
  132. package/types/BetterGenshinImpact/GameTask/ISoloTask.d.ts +76 -4
  133. package/types/BetterGenshinImpact/GameTask/Model/Area/Converter/INodeConverter.d.ts +43 -9
  134. package/types/BetterGenshinImpact/GameTask/Model/Area/DesktopRegion.d.ts +134 -51
  135. package/types/BetterGenshinImpact/GameTask/Model/Area/GameCaptureRegion.d.ts +184 -71
  136. package/types/BetterGenshinImpact/GameTask/Model/Area/ImageRegion.d.ts +171 -95
  137. package/types/BetterGenshinImpact/GameTask/Model/Area/Region.d.ts +471 -226
  138. package/types/BetterGenshinImpact/GameTask/Model/BaseTaskParam.d.ts +37 -5
  139. package/types/BetterGenshinImpact/GameTask/Model/GameUI/GridScreenName.d.ts +95 -0
  140. package/types/BetterGenshinImpact/GameTask/Model/ISystemInfo.d.ts +90 -0
  141. package/types/BetterGenshinImpact/Helpers/User32Helper.d.ts +223 -224
  142. package/types/BetterGenshinImpact/View/Drawable/DrawContent.d.ts +112 -35
  143. package/types/BetterGenshinImpact/View/Drawable/LineDrawable.d.ts +67 -12
  144. package/types/BetterGenshinImpact/View/Drawable/RectDrawable.d.ts +71 -20
  145. package/types/BetterGenshinImpact/View/Drawable/TextDrawable.d.ts +59 -0
  146. package/types/CommunityToolkit/Mvvm/ComponentModel/ObservableObject.d.ts +35 -0
  147. package/types/Compunet/YoloSharp/Metadata/YoloArchitecture.d.ts +28 -0
  148. package/types/Compunet/YoloSharp/Metadata/YoloMetadata.d.ts +38 -0
  149. package/types/Compunet/YoloSharp/Metadata/YoloName.d.ts +27 -0
  150. package/types/Compunet/YoloSharp/Metadata/YoloTask.d.ts +31 -0
  151. package/types/Compunet/YoloSharp/YoloConfiguration.d.ts +36 -0
  152. package/types/Compunet/YoloSharp/YoloPredictor.d.ts +39 -0
  153. package/types/Compunet/YoloSharp/YoloPredictorOptions.d.ts +33 -0
  154. package/types/Fischless/WindowsInput/IKeyboardSimulator.d.ts +83 -56
  155. package/types/Fischless/WindowsInput/IMouseSimulator.d.ts +65 -51
  156. package/types/Microsoft/ClearScript/AsyncDocumentLoadCallback.d.ts +39 -0
  157. package/types/Microsoft/ClearScript/ContinuationCallback.d.ts +29 -0
  158. package/types/Microsoft/ClearScript/CustomAttributeLoader.d.ts +34 -0
  159. package/types/Microsoft/ClearScript/Document.d.ts +22 -0
  160. package/types/Microsoft/ClearScript/DocumentAccessFlags.d.ts +29 -0
  161. package/types/Microsoft/ClearScript/DocumentCategory.d.ts +20 -0
  162. package/types/Microsoft/ClearScript/DocumentContextCallback.d.ts +35 -0
  163. package/types/Microsoft/ClearScript/DocumentFlags.d.ts +25 -0
  164. package/types/Microsoft/ClearScript/DocumentInfo.d.ts +31 -0
  165. package/types/Microsoft/ClearScript/DocumentLoadCallback.d.ts +32 -0
  166. package/types/Microsoft/ClearScript/DocumentLoader.d.ts +47 -0
  167. package/types/Microsoft/ClearScript/DocumentSettings.d.ts +54 -0
  168. package/types/Microsoft/ClearScript/HostEvent.d.ts +27 -0
  169. package/types/Microsoft/ClearScript/HostFunctions.d.ts +109 -0
  170. package/types/Microsoft/ClearScript/HostItemFlags.d.ts +27 -0
  171. package/types/Microsoft/ClearScript/HostType.d.ts +181 -0
  172. package/types/Microsoft/ClearScript/HostTypeCollection.d.ts +11 -0
  173. package/types/Microsoft/ClearScript/HostVariable.d.ts +66 -0
  174. package/types/Microsoft/ClearScript/IScriptEngine.d.ts +207 -0
  175. package/types/Microsoft/ClearScript/IScriptObject.d.ts +55 -0
  176. package/types/Microsoft/ClearScript/IScriptableObject.d.ts +32 -0
  177. package/types/Microsoft/ClearScript/PropertyBag.d.ts +28 -0
  178. package/types/Microsoft/ClearScript/ScriptAccess.d.ts +25 -0
  179. package/types/Microsoft/ClearScript/ScriptEngine.d.ts +202 -0
  180. package/types/Microsoft/ClearScript/ScriptObject.d.ts +69 -0
  181. package/types/Microsoft/ClearScript/Undefined.d.ts +15 -0
  182. package/types/Microsoft/ClearScript/V8/V8ProxyHelpers.d.ts +7 -0
  183. package/types/Microsoft/ClearScript/ValueRef.d.ts +25 -0
  184. package/types/Microsoft/ClearScript/VoidResult.d.ts +15 -0
  185. package/types/Microsoft/Extensions/Localization/IStringLocalizer.d.ts +71 -6
  186. package/types/Microsoft/Extensions/Localization/LocalizedString.d.ts +24 -20
  187. package/types/Microsoft/Extensions/Logging/EventId.d.ts +33 -0
  188. package/types/Microsoft/Extensions/Logging/ILogger.d.ts +42 -0
  189. package/types/Microsoft/Extensions/Logging/LogLevel.d.ts +29 -0
  190. package/types/Microsoft/ML/OnnxRuntime/CoreMLFlags.d.ts +30 -0
  191. package/types/Microsoft/ML/OnnxRuntime/DisposableNamedOnnxValue.d.ts +28 -0
  192. package/types/Microsoft/ML/OnnxRuntime/ExecutionMode.d.ts +24 -0
  193. package/types/Microsoft/ML/OnnxRuntime/FixedBufferOnnxValue.d.ts +47 -0
  194. package/types/Microsoft/ML/OnnxRuntime/GraphOptimizationLevel.d.ts +29 -0
  195. package/types/Microsoft/ML/OnnxRuntime/IDisposableReadOnlyCollection.d.ts +51 -0
  196. package/types/Microsoft/ML/OnnxRuntime/InferenceSession.d.ts +200 -0
  197. package/types/Microsoft/ML/OnnxRuntime/MapMetadata.d.ts +20 -0
  198. package/types/Microsoft/ML/OnnxRuntime/ModelMetadata.d.ts +24 -0
  199. package/types/Microsoft/ML/OnnxRuntime/NamedOnnxValue.d.ts +46 -0
  200. package/types/Microsoft/ML/OnnxRuntime/NnapiFlags.d.ts +28 -0
  201. package/types/Microsoft/ML/OnnxRuntime/NodeMetadata.d.ts +37 -0
  202. package/types/Microsoft/ML/OnnxRuntime/OnnxValueType.d.ts +29 -0
  203. package/types/Microsoft/ML/OnnxRuntime/OptionalMetadata.d.ts +18 -0
  204. package/types/Microsoft/ML/OnnxRuntime/OrtAllocator.d.ts +38 -0
  205. package/types/Microsoft/ML/OnnxRuntime/OrtAllocatorType.d.ts +24 -0
  206. package/types/Microsoft/ML/OnnxRuntime/OrtCUDAProviderOptions.d.ts +35 -0
  207. package/types/Microsoft/ML/OnnxRuntime/OrtExternalAllocation.d.ts +43 -0
  208. package/types/Microsoft/ML/OnnxRuntime/OrtIoBinding.d.ts +74 -0
  209. package/types/Microsoft/ML/OnnxRuntime/OrtLoggingLevel.d.ts +27 -0
  210. package/types/Microsoft/ML/OnnxRuntime/OrtLoraAdapter.d.ts +36 -0
  211. package/types/Microsoft/ML/OnnxRuntime/OrtMapTypeInfo.d.ts +21 -0
  212. package/types/Microsoft/ML/OnnxRuntime/OrtMemType.d.ts +26 -0
  213. package/types/Microsoft/ML/OnnxRuntime/OrtMemoryAllocation.d.ts +28 -0
  214. package/types/Microsoft/ML/OnnxRuntime/OrtMemoryInfo.d.ts +61 -0
  215. package/types/Microsoft/ML/OnnxRuntime/OrtROCMProviderOptions.d.ts +35 -0
  216. package/types/Microsoft/ML/OnnxRuntime/OrtSequenceOrOptionalTypeInfo.d.ts +23 -0
  217. package/types/Microsoft/ML/OnnxRuntime/OrtTensorRTProviderOptions.d.ts +40 -0
  218. package/types/Microsoft/ML/OnnxRuntime/OrtTensorTypeAndShapeInfo.d.ts +27 -0
  219. package/types/Microsoft/ML/OnnxRuntime/OrtTypeInfo.d.ts +25 -0
  220. package/types/Microsoft/ML/OnnxRuntime/OrtValue.d.ts +184 -0
  221. package/types/Microsoft/ML/OnnxRuntime/PrePackedWeightsContainer.d.ts +30 -0
  222. package/types/Microsoft/ML/OnnxRuntime/RunOptions.d.ts +49 -0
  223. package/types/Microsoft/ML/OnnxRuntime/SequenceMetadata.d.ts +18 -0
  224. package/types/Microsoft/ML/OnnxRuntime/SessionOptions.d.ts +170 -0
  225. package/types/Microsoft/ML/OnnxRuntime/Tensors/DenseTensor.d.ts +64 -0
  226. package/types/Microsoft/ML/OnnxRuntime/Tensors/Tensor.d.ts +117 -0
  227. package/types/Microsoft/ML/OnnxRuntime/Tensors/TensorBase.d.ts +31 -0
  228. package/types/Microsoft/ML/OnnxRuntime/Tensors/TensorElementType.d.ts +39 -0
  229. package/types/Microsoft/ML/OnnxRuntime/Tensors/TensorElementTypeInfo.d.ts +31 -0
  230. package/types/Microsoft/ML/OnnxRuntime/Tensors/TensorTypeInfo.d.ts +32 -0
  231. package/types/Microsoft/Win32/SafeHandles/SafeFileHandle.d.ts +33 -0
  232. package/types/Microsoft/Win32/SafeHandles/SafeHandleZeroOrMinusOneIsInvalid.d.ts +24 -0
  233. package/types/Microsoft/Win32/SafeHandles/SafeProcessHandle.d.ts +30 -0
  234. package/types/Microsoft/Win32/SafeHandles/SafeWaitHandle.d.ts +30 -0
  235. package/types/OpenCvSharp/AKAZE.d.ts +90 -0
  236. package/types/OpenCvSharp/AKAZEDescriptorType.d.ts +26 -0
  237. package/types/OpenCvSharp/AccessFlag.d.ts +27 -0
  238. package/types/OpenCvSharp/AdaptiveThresholdTypes.d.ts +27 -0
  239. package/types/OpenCvSharp/AgastFeatureDetector.d.ts +76 -0
  240. package/types/OpenCvSharp/Algorithm.d.ts +31 -0
  241. package/types/OpenCvSharp/AlgorithmParamType.d.ts +34 -0
  242. package/types/OpenCvSharp/Aruco/CornerRefineMethod.d.ts +26 -0
  243. package/types/OpenCvSharp/Aruco/CvAruco.d.ts +118 -0
  244. package/types/OpenCvSharp/Aruco/DetectorParameters.d.ts +60 -0
  245. package/types/OpenCvSharp/Aruco/Dictionary.d.ts +74 -0
  246. package/types/OpenCvSharp/Aruco/PredefinedDictionaryName.d.ts +46 -0
  247. package/types/OpenCvSharp/BFMatcher.d.ts +29 -0
  248. package/types/OpenCvSharp/BOWImgDescriptorExtractor.d.ts +76 -0
  249. package/types/OpenCvSharp/BOWKMeansTrainer.d.ts +52 -0
  250. package/types/OpenCvSharp/BOWTrainer.d.ts +34 -0
  251. package/types/OpenCvSharp/BRISK.d.ts +91 -0
  252. package/types/OpenCvSharp/BackgroundSubtractor.d.ts +41 -0
  253. package/types/OpenCvSharp/BackgroundSubtractorGMG.d.ts +63 -0
  254. package/types/OpenCvSharp/BackgroundSubtractorKNN.d.ts +60 -0
  255. package/types/OpenCvSharp/BackgroundSubtractorMOG.d.ts +57 -0
  256. package/types/OpenCvSharp/BackgroundSubtractorMog2.d.ts +70 -0
  257. package/types/OpenCvSharp/BorderTypes.d.ts +30 -0
  258. package/types/OpenCvSharp/BroxOpticalFlow.d.ts +32 -0
  259. package/types/OpenCvSharp/ButtonType.d.ts +25 -0
  260. package/types/OpenCvSharp/CLAHE.d.ts +44 -0
  261. package/types/OpenCvSharp/CalibrateCRF.d.ts +32 -0
  262. package/types/OpenCvSharp/CalibrateDebevec.d.ts +44 -0
  263. package/types/OpenCvSharp/CalibrateRobertson.d.ts +43 -0
  264. package/types/OpenCvSharp/CalibrationFlags.d.ts +40 -0
  265. package/types/OpenCvSharp/CameraChannels.d.ts +27 -0
  266. package/types/OpenCvSharp/CapturePosRatio.d.ts +24 -0
  267. package/types/OpenCvSharp/CaptureType.d.ts +25 -0
  268. package/types/OpenCvSharp/CascadeClassifier.d.ts +147 -0
  269. package/types/OpenCvSharp/ChessboardFlags.d.ts +29 -0
  270. package/types/OpenCvSharp/CircleSegment.d.ts +33 -0
  271. package/types/OpenCvSharp/CmpType.d.ts +28 -0
  272. package/types/OpenCvSharp/ColorConversionCodes.d.ts +223 -0
  273. package/types/OpenCvSharp/ColormapTypes.d.ts +44 -0
  274. package/types/OpenCvSharp/ConnectedComponent.d.ts +86 -0
  275. package/types/OpenCvSharp/ConnectedComponentsAlgorithmsTypes.d.ts +33 -0
  276. package/types/OpenCvSharp/ConnectedComponentsTypes.d.ts +30 -0
  277. package/types/OpenCvSharp/ContourApproximationModes.d.ts +30 -0
  278. package/types/OpenCvSharp/ConvertImageModes.d.ts +25 -0
  279. package/types/OpenCvSharp/CovarFlags.d.ts +28 -0
  280. package/types/OpenCvSharp/CpuFeatures.d.ts +61 -0
  281. package/types/OpenCvSharp/CriteriaTypes.d.ts +25 -0
  282. package/types/OpenCvSharp/Cv2.d.ts +6773 -0
  283. package/types/OpenCvSharp/CvErrorCallback.d.ts +48 -0
  284. package/types/OpenCvSharp/CvObject.d.ts +19 -0
  285. package/types/OpenCvSharp/CvTrackbar.d.ts +38 -0
  286. package/types/OpenCvSharp/DMatch.d.ts +58 -0
  287. package/types/OpenCvSharp/DctFlags.d.ts +25 -0
  288. package/types/OpenCvSharp/DecompTypes.d.ts +28 -0
  289. package/types/OpenCvSharp/DenseOpticalFlowExt.d.ts +48 -0
  290. package/types/OpenCvSharp/DescriptorMatcher.d.ts +133 -0
  291. package/types/OpenCvSharp/Detail/AffineBestOf2NearestMatcher.d.ts +48 -0
  292. package/types/OpenCvSharp/Detail/BestOf2NearestMatcher.d.ts +49 -0
  293. package/types/OpenCvSharp/Detail/CvDetail.d.ts +45 -0
  294. package/types/OpenCvSharp/Detail/FeaturesMatcher.d.ts +41 -0
  295. package/types/OpenCvSharp/Detail/ImageFeatures.d.ts +60 -0
  296. package/types/OpenCvSharp/Detail/MatchesInfo.d.ts +47 -0
  297. package/types/OpenCvSharp/Detail/Stitcher.d.ts +156 -0
  298. package/types/OpenCvSharp/DftFlags.d.ts +28 -0
  299. package/types/OpenCvSharp/DisposableCvObject.d.ts +28 -0
  300. package/types/OpenCvSharp/DisposableObject.d.ts +22 -0
  301. package/types/OpenCvSharp/DistanceTransformLabelTypes.d.ts +28 -0
  302. package/types/OpenCvSharp/DistanceTransformMasks.d.ts +28 -0
  303. package/types/OpenCvSharp/DistanceTypes.d.ts +30 -0
  304. package/types/OpenCvSharp/DistributionType.d.ts +24 -0
  305. package/types/OpenCvSharp/Dnn/Backend.d.ts +28 -0
  306. package/types/OpenCvSharp/Dnn/CvDnn.d.ts +228 -0
  307. package/types/OpenCvSharp/Dnn/Net.d.ts +126 -0
  308. package/types/OpenCvSharp/Dnn/Target.d.ts +31 -0
  309. package/types/OpenCvSharp/DnnSuperres/DnnSuperResImpl.d.ts +69 -0
  310. package/types/OpenCvSharp/DrawMatchesFlags.d.ts +26 -0
  311. package/types/OpenCvSharp/DualTVL1OpticalFlow.d.ts +44 -0
  312. package/types/OpenCvSharp/EM.d.ts +171 -0
  313. package/types/OpenCvSharp/EdgePreservingMethods.d.ts +27 -0
  314. package/types/OpenCvSharp/ErrorCode.d.ts +77 -0
  315. package/types/OpenCvSharp/EssentialMatMethod.d.ts +24 -0
  316. package/types/OpenCvSharp/FASTType.d.ts +25 -0
  317. package/types/OpenCvSharp/Face/BasicFaceRecognizer.d.ts +55 -0
  318. package/types/OpenCvSharp/Face/EigenFaceRecognizer.d.ts +39 -0
  319. package/types/OpenCvSharp/Face/FaceRecognizer.d.ts +72 -0
  320. package/types/OpenCvSharp/Face/Facemark.d.ts +33 -0
  321. package/types/OpenCvSharp/Face/FacemarkAAM.d.ts +67 -0
  322. package/types/OpenCvSharp/Face/FacemarkLBF.d.ts +96 -0
  323. package/types/OpenCvSharp/Face/FisherFaceRecognizer.d.ts +39 -0
  324. package/types/OpenCvSharp/Face/LBPHFaceRecognizer.d.ts +86 -0
  325. package/types/OpenCvSharp/FarnebackOpticalFlow.d.ts +36 -0
  326. package/types/OpenCvSharp/FastFeatureDetector.d.ts +41 -0
  327. package/types/OpenCvSharp/Feature2D.d.ts +86 -0
  328. package/types/OpenCvSharp/Features2D/SIFT.d.ts +51 -0
  329. package/types/OpenCvSharp/FileNode.d.ts +274 -0
  330. package/types/OpenCvSharp/FileNodeIterator.d.ts +73 -0
  331. package/types/OpenCvSharp/FileStorage.d.ts +240 -0
  332. package/types/OpenCvSharp/FindCirclesGridFlags.d.ts +28 -0
  333. package/types/OpenCvSharp/FishEyeCalibrationFlags.d.ts +36 -0
  334. package/types/OpenCvSharp/Flann/AutotunedIndexParams.d.ts +46 -0
  335. package/types/OpenCvSharp/Flann/CompositeIndexParams.d.ts +56 -0
  336. package/types/OpenCvSharp/Flann/FlannCentersInit.d.ts +25 -0
  337. package/types/OpenCvSharp/Flann/FlannDistance.d.ts +35 -0
  338. package/types/OpenCvSharp/Flann/Index.d.ts +92 -0
  339. package/types/OpenCvSharp/Flann/IndexParams.d.ts +60 -0
  340. package/types/OpenCvSharp/Flann/KDTreeIndexParams.d.ts +28 -0
  341. package/types/OpenCvSharp/Flann/KMeansIndexParams.d.ts +46 -0
  342. package/types/OpenCvSharp/Flann/LinearIndexParams.d.ts +29 -0
  343. package/types/OpenCvSharp/Flann/LshIndexParams.d.ts +31 -0
  344. package/types/OpenCvSharp/Flann/SavedIndexParams.d.ts +22 -0
  345. package/types/OpenCvSharp/Flann/SearchParams.d.ts +38 -0
  346. package/types/OpenCvSharp/FlannBasedMatcher.d.ts +39 -0
  347. package/types/OpenCvSharp/FlipMode.d.ts +25 -0
  348. package/types/OpenCvSharp/FloodFillFlags.d.ts +26 -0
  349. package/types/OpenCvSharp/FormatType.d.ts +28 -0
  350. package/types/OpenCvSharp/FourCC.d.ts +85 -0
  351. package/types/OpenCvSharp/FrameSource.d.ts +42 -0
  352. package/types/OpenCvSharp/FundamentalMatMethods.d.ts +29 -0
  353. package/types/OpenCvSharp/GFTTDetector.d.ts +71 -0
  354. package/types/OpenCvSharp/GemmFlags.d.ts +26 -0
  355. package/types/OpenCvSharp/GeneralizedHough.d.ts +77 -0
  356. package/types/OpenCvSharp/GeneralizedHoughBallard.d.ts +30 -0
  357. package/types/OpenCvSharp/GeneralizedHoughGuil.d.ts +54 -0
  358. package/types/OpenCvSharp/GrabCutClasses.d.ts +26 -0
  359. package/types/OpenCvSharp/GrabCutModes.d.ts +25 -0
  360. package/types/OpenCvSharp/HOGDescriptor.d.ts +419 -0
  361. package/types/OpenCvSharp/HaarDetectionTypes.d.ts +26 -0
  362. package/types/OpenCvSharp/HandEyeCalibrationMethod.d.ts +30 -0
  363. package/types/OpenCvSharp/HausdorffDistanceExtractor.d.ts +45 -0
  364. package/types/OpenCvSharp/HersheyFonts.d.ts +31 -0
  365. package/types/OpenCvSharp/HierarchyIndex.d.ts +41 -0
  366. package/types/OpenCvSharp/HistCompMethods.d.ts +29 -0
  367. package/types/OpenCvSharp/HistogramNormType.d.ts +23 -0
  368. package/types/OpenCvSharp/HomographyMethods.d.ts +33 -0
  369. package/types/OpenCvSharp/HoughModes.d.ts +27 -0
  370. package/types/OpenCvSharp/ICvPtrHolder.d.ts +28 -0
  371. package/types/OpenCvSharp/IVec.d.ts +79 -0
  372. package/types/OpenCvSharp/ImageEncodingParam.d.ts +39 -0
  373. package/types/OpenCvSharp/ImgHash/AverageHash.d.ts +22 -0
  374. package/types/OpenCvSharp/ImgHash/BlockMeanHash.d.ts +35 -0
  375. package/types/OpenCvSharp/ImgHash/BlockMeanHashMode.d.ts +24 -0
  376. package/types/OpenCvSharp/ImgHash/ColorMomentHash.d.ts +29 -0
  377. package/types/OpenCvSharp/ImgHash/ImgHashBase.d.ts +28 -0
  378. package/types/OpenCvSharp/ImgHash/MarrHildrethHash.d.ts +47 -0
  379. package/types/OpenCvSharp/ImgHash/PHash.d.ts +29 -0
  380. package/types/OpenCvSharp/ImgHash/RadialVarianceHash.d.ts +45 -0
  381. package/types/OpenCvSharp/ImreadModes.d.ts +35 -0
  382. package/types/OpenCvSharp/ImwriteEXRTypeFlags.d.ts +24 -0
  383. package/types/OpenCvSharp/ImwriteFlags.d.ts +40 -0
  384. package/types/OpenCvSharp/ImwritePAMFlags.d.ts +28 -0
  385. package/types/OpenCvSharp/ImwritePNGFlags.d.ts +27 -0
  386. package/types/OpenCvSharp/InOutArrayKind.d.ts +38 -0
  387. package/types/OpenCvSharp/InpaintMethod.d.ts +24 -0
  388. package/types/OpenCvSharp/InputArray.d.ts +156 -0
  389. package/types/OpenCvSharp/InputOutputArray.d.ts +25 -0
  390. package/types/OpenCvSharp/Internal/ExceptionHandler.d.ts +22 -0
  391. package/types/OpenCvSharp/Internal/ExceptionStatus.d.ts +24 -0
  392. package/types/OpenCvSharp/Internal/NativeMethods.d.ts +13049 -0
  393. package/types/OpenCvSharp/Internal/StdString.d.ts +36 -0
  394. package/types/OpenCvSharp/Internal/Util/ArrayAddress.d.ts +40 -0
  395. package/types/OpenCvSharp/Internal/Util/ArrayAddress2.d.ts +44 -0
  396. package/types/OpenCvSharp/Internal/Util/PInvokeHelper.d.ts +27 -0
  397. package/types/OpenCvSharp/Internal/Util/ReadOnlyArray2D.d.ts +41 -0
  398. package/types/OpenCvSharp/Internal/Util/SaturateCast.d.ts +82 -0
  399. package/types/OpenCvSharp/Internal/Util/ScopedGCHandle.d.ts +40 -0
  400. package/types/OpenCvSharp/Internal/Vectors/IStdVector.d.ts +47 -0
  401. package/types/OpenCvSharp/Internal/Vectors/VectorOfByte.d.ts +43 -0
  402. package/types/OpenCvSharp/Internal/Vectors/VectorOfDMatch.d.ts +44 -0
  403. package/types/OpenCvSharp/Internal/Vectors/VectorOfDTreesNode.d.ts +40 -0
  404. package/types/OpenCvSharp/Internal/Vectors/VectorOfDouble.d.ts +43 -0
  405. package/types/OpenCvSharp/Internal/Vectors/VectorOfFloat.d.ts +43 -0
  406. package/types/OpenCvSharp/Internal/Vectors/VectorOfImageFeatures.d.ts +38 -0
  407. package/types/OpenCvSharp/Internal/Vectors/VectorOfInt32.d.ts +43 -0
  408. package/types/OpenCvSharp/Internal/Vectors/VectorOfKeyPoint.d.ts +44 -0
  409. package/types/OpenCvSharp/Internal/Vectors/VectorOfMat.d.ts +46 -0
  410. package/types/OpenCvSharp/Internal/Vectors/VectorOfPoint.d.ts +44 -0
  411. package/types/OpenCvSharp/Internal/Vectors/VectorOfPoint2d.d.ts +40 -0
  412. package/types/OpenCvSharp/Internal/Vectors/VectorOfPoint2f.d.ts +44 -0
  413. package/types/OpenCvSharp/Internal/Vectors/VectorOfPoint3f.d.ts +44 -0
  414. package/types/OpenCvSharp/Internal/Vectors/VectorOfRect.d.ts +44 -0
  415. package/types/OpenCvSharp/Internal/Vectors/VectorOfRect2d.d.ts +44 -0
  416. package/types/OpenCvSharp/Internal/Vectors/VectorOfRotatedRect.d.ts +44 -0
  417. package/types/OpenCvSharp/Internal/Vectors/VectorOfString.d.ts +39 -0
  418. package/types/OpenCvSharp/Internal/Vectors/VectorOfVec2f.d.ts +41 -0
  419. package/types/OpenCvSharp/Internal/Vectors/VectorOfVec3f.d.ts +41 -0
  420. package/types/OpenCvSharp/Internal/Vectors/VectorOfVec4f.d.ts +43 -0
  421. package/types/OpenCvSharp/Internal/Vectors/VectorOfVec4i.d.ts +43 -0
  422. package/types/OpenCvSharp/Internal/Vectors/VectorOfVectorByte.d.ts +40 -0
  423. package/types/OpenCvSharp/Internal/Vectors/VectorOfVectorDMatch.d.ts +41 -0
  424. package/types/OpenCvSharp/Internal/Vectors/VectorOfVectorDouble.d.ts +40 -0
  425. package/types/OpenCvSharp/Internal/Vectors/VectorOfVectorInt32.d.ts +40 -0
  426. package/types/OpenCvSharp/Internal/Vectors/VectorOfVectorKeyPoint.d.ts +42 -0
  427. package/types/OpenCvSharp/Internal/Vectors/VectorOfVectorPoint.d.ts +43 -0
  428. package/types/OpenCvSharp/Internal/Vectors/VectorOfVectorPoint2f.d.ts +41 -0
  429. package/types/OpenCvSharp/Internal/Win32API.d.ts +19 -0
  430. package/types/OpenCvSharp/Internal/WindowsLibraryLoader.d.ts +37 -0
  431. package/types/OpenCvSharp/InterpolationFlags.d.ts +31 -0
  432. package/types/OpenCvSharp/KAZE.d.ts +70 -0
  433. package/types/OpenCvSharp/KAZEDiffusivityType.d.ts +26 -0
  434. package/types/OpenCvSharp/KMeansFlags.d.ts +25 -0
  435. package/types/OpenCvSharp/KalmanFilter.d.ts +94 -0
  436. package/types/OpenCvSharp/KeyPoint.d.ts +109 -0
  437. package/types/OpenCvSharp/KeyPointsFilter.d.ts +57 -0
  438. package/types/OpenCvSharp/LDA.d.ts +63 -0
  439. package/types/OpenCvSharp/Line2D.d.ts +54 -0
  440. package/types/OpenCvSharp/Line3D.d.ts +56 -0
  441. package/types/OpenCvSharp/LineDescriptor/KeyLine.d.ts +213 -0
  442. package/types/OpenCvSharp/LineDescriptor/LSDParam.d.ts +73 -0
  443. package/types/OpenCvSharp/LineIterator.d.ts +98 -0
  444. package/types/OpenCvSharp/LineSegmentDetector.d.ts +132 -0
  445. package/types/OpenCvSharp/LineSegmentDetectorModes.d.ts +28 -0
  446. package/types/OpenCvSharp/LineSegmentPoint.d.ts +61 -0
  447. package/types/OpenCvSharp/LineSegmentPolar.d.ts +56 -0
  448. package/types/OpenCvSharp/LineTypes.d.ts +25 -0
  449. package/types/OpenCvSharp/LogLevel.d.ts +29 -0
  450. package/types/OpenCvSharp/ML/ANN_MLP.d.ts +149 -0
  451. package/types/OpenCvSharp/ML/Boost.d.ts +59 -0
  452. package/types/OpenCvSharp/ML/DTrees.d.ts +104 -0
  453. package/types/OpenCvSharp/ML/KNearest.d.ts +83 -0
  454. package/types/OpenCvSharp/ML/LogisticRegression.d.ts +111 -0
  455. package/types/OpenCvSharp/ML/NormalBayesClassifier.d.ts +48 -0
  456. package/types/OpenCvSharp/ML/ParamGrid.d.ts +32 -0
  457. package/types/OpenCvSharp/ML/RTrees.d.ts +36 -0
  458. package/types/OpenCvSharp/ML/SVM.d.ts +199 -0
  459. package/types/OpenCvSharp/ML/SampleTypes.d.ts +24 -0
  460. package/types/OpenCvSharp/ML/StatModel.d.ts +82 -0
  461. package/types/OpenCvSharp/ML/TrainData.d.ts +26 -0
  462. package/types/OpenCvSharp/MSER.d.ts +107 -0
  463. package/types/OpenCvSharp/MarkerTypes.d.ts +29 -0
  464. package/types/OpenCvSharp/Mat.d.ts +2572 -0
  465. package/types/OpenCvSharp/MatDiagType.d.ts +25 -0
  466. package/types/OpenCvSharp/MatExpr.d.ts +121 -0
  467. package/types/OpenCvSharp/MatExprRowColIndexer.d.ts +31 -0
  468. package/types/OpenCvSharp/MatForeachFunctionByte.d.ts +30 -0
  469. package/types/OpenCvSharp/MatForeachFunctionDouble.d.ts +30 -0
  470. package/types/OpenCvSharp/MatForeachFunctionFloat.d.ts +30 -0
  471. package/types/OpenCvSharp/MatForeachFunctionInt16.d.ts +30 -0
  472. package/types/OpenCvSharp/MatForeachFunctionInt32.d.ts +30 -0
  473. package/types/OpenCvSharp/MatForeachFunctionVec2b.d.ts +31 -0
  474. package/types/OpenCvSharp/MatForeachFunctionVec2d.d.ts +31 -0
  475. package/types/OpenCvSharp/MatForeachFunctionVec2f.d.ts +31 -0
  476. package/types/OpenCvSharp/MatForeachFunctionVec2i.d.ts +31 -0
  477. package/types/OpenCvSharp/MatForeachFunctionVec2s.d.ts +31 -0
  478. package/types/OpenCvSharp/MatForeachFunctionVec3b.d.ts +31 -0
  479. package/types/OpenCvSharp/MatForeachFunctionVec3d.d.ts +31 -0
  480. package/types/OpenCvSharp/MatForeachFunctionVec3f.d.ts +31 -0
  481. package/types/OpenCvSharp/MatForeachFunctionVec3i.d.ts +31 -0
  482. package/types/OpenCvSharp/MatForeachFunctionVec3s.d.ts +31 -0
  483. package/types/OpenCvSharp/MatForeachFunctionVec4b.d.ts +31 -0
  484. package/types/OpenCvSharp/MatForeachFunctionVec4d.d.ts +31 -0
  485. package/types/OpenCvSharp/MatForeachFunctionVec4f.d.ts +31 -0
  486. package/types/OpenCvSharp/MatForeachFunctionVec4i.d.ts +31 -0
  487. package/types/OpenCvSharp/MatForeachFunctionVec4s.d.ts +31 -0
  488. package/types/OpenCvSharp/MatForeachFunctionVec6b.d.ts +31 -0
  489. package/types/OpenCvSharp/MatForeachFunctionVec6d.d.ts +31 -0
  490. package/types/OpenCvSharp/MatForeachFunctionVec6f.d.ts +31 -0
  491. package/types/OpenCvSharp/MatForeachFunctionVec6i.d.ts +31 -0
  492. package/types/OpenCvSharp/MatForeachFunctionVec6s.d.ts +31 -0
  493. package/types/OpenCvSharp/MatIndexer.d.ts +59 -0
  494. package/types/OpenCvSharp/MatMemoryManager.d.ts +48 -0
  495. package/types/OpenCvSharp/MatOfT.d.ts +1 -0
  496. package/types/OpenCvSharp/MatType.d.ts +87 -0
  497. package/types/OpenCvSharp/MergeDebevec.d.ts +22 -0
  498. package/types/OpenCvSharp/MergeExposures.d.ts +34 -0
  499. package/types/OpenCvSharp/MergeMertens.d.ts +33 -0
  500. package/types/OpenCvSharp/Moments.d.ts +125 -0
  501. package/types/OpenCvSharp/MorphShapes.d.ts +25 -0
  502. package/types/OpenCvSharp/MorphTypes.d.ts +30 -0
  503. package/types/OpenCvSharp/MotionTypes.d.ts +26 -0
  504. package/types/OpenCvSharp/MouseCallback.d.ts +48 -0
  505. package/types/OpenCvSharp/MouseEventFlags.d.ts +28 -0
  506. package/types/OpenCvSharp/MouseEventTypes.d.ts +34 -0
  507. package/types/OpenCvSharp/NormTypes.d.ts +30 -0
  508. package/types/OpenCvSharp/ORB.d.ts +114 -0
  509. package/types/OpenCvSharp/ORBScoreType.d.ts +24 -0
  510. package/types/OpenCvSharp/OpenCVException.d.ts +58 -0
  511. package/types/OpenCvSharp/OpenCvSharpException.d.ts +30 -0
  512. package/types/OpenCvSharp/OptFlow/CvOptFlow.d.ts +149 -0
  513. package/types/OpenCvSharp/OpticalFlowFlags.d.ts +28 -0
  514. package/types/OpenCvSharp/OutputArray.d.ts +58 -0
  515. package/types/OpenCvSharp/OutputArrayOfMatList.d.ts +31 -0
  516. package/types/OpenCvSharp/OutputArrayOfStructList.d.ts +38 -0
  517. package/types/OpenCvSharp/PCA.d.ts +121 -0
  518. package/types/OpenCvSharp/PixelConnectivity.d.ts +24 -0
  519. package/types/OpenCvSharp/Point.d.ts +51 -0
  520. package/types/OpenCvSharp/Point2d.d.ts +52 -0
  521. package/types/OpenCvSharp/Point2f.d.ts +53 -0
  522. package/types/OpenCvSharp/Point3d.d.ts +55 -0
  523. package/types/OpenCvSharp/Point3f.d.ts +56 -0
  524. package/types/OpenCvSharp/Point3i.d.ts +53 -0
  525. package/types/OpenCvSharp/ProjectionType.d.ts +24 -0
  526. package/types/OpenCvSharp/Ptr.d.ts +25 -0
  527. package/types/OpenCvSharp/PyrLKOpticalFlow.d.ts +26 -0
  528. package/types/OpenCvSharp/QRCodeDetector.d.ts +90 -0
  529. package/types/OpenCvSharp/Quality/QualityBRISQUE.d.ts +35 -0
  530. package/types/OpenCvSharp/Quality/QualityBase.d.ts +31 -0
  531. package/types/OpenCvSharp/Quality/QualityGMSD.d.ts +30 -0
  532. package/types/OpenCvSharp/Quality/QualityMSE.d.ts +30 -0
  533. package/types/OpenCvSharp/Quality/QualityPSNR.d.ts +49 -0
  534. package/types/OpenCvSharp/Quality/QualitySSIM.d.ts +30 -0
  535. package/types/OpenCvSharp/RNG.d.ts +68 -0
  536. package/types/OpenCvSharp/RNG_MT19937.d.ts +41 -0
  537. package/types/OpenCvSharp/Range.d.ts +36 -0
  538. package/types/OpenCvSharp/Rangef.d.ts +38 -0
  539. package/types/OpenCvSharp/Rect.d.ts +86 -0
  540. package/types/OpenCvSharp/Rect2d.d.ts +89 -0
  541. package/types/OpenCvSharp/Rect2f.d.ts +88 -0
  542. package/types/OpenCvSharp/RectanglesIntersectTypes.d.ts +28 -0
  543. package/types/OpenCvSharp/ReduceDimension.d.ts +25 -0
  544. package/types/OpenCvSharp/ReduceTypes.d.ts +26 -0
  545. package/types/OpenCvSharp/ResourcesTracker.d.ts +49 -0
  546. package/types/OpenCvSharp/RetrievalModes.d.ts +27 -0
  547. package/types/OpenCvSharp/RidgeDetectionFilter.d.ts +92 -0
  548. package/types/OpenCvSharp/RobotWorldHandEyeCalibrationMethod.d.ts +28 -0
  549. package/types/OpenCvSharp/RobustEstimationAlgorithms.d.ts +36 -0
  550. package/types/OpenCvSharp/RotateFlags.d.ts +25 -0
  551. package/types/OpenCvSharp/RotatedRect.d.ts +53 -0
  552. package/types/OpenCvSharp/SVD.d.ts +98 -0
  553. package/types/OpenCvSharp/Scalar.d.ts +247 -0
  554. package/types/OpenCvSharp/SeamlessCloneMethods.d.ts +28 -0
  555. package/types/OpenCvSharp/Segmentation/IntelligentScissorsMB.d.ts +97 -0
  556. package/types/OpenCvSharp/ShapeContextDistanceExtractor.d.ts +89 -0
  557. package/types/OpenCvSharp/ShapeDistanceExtractor.d.ts +28 -0
  558. package/types/OpenCvSharp/ShapeMatchModes.d.ts +25 -0
  559. package/types/OpenCvSharp/SimilarRects.d.ts +29 -0
  560. package/types/OpenCvSharp/SimpleBlobDetector.d.ts +107 -0
  561. package/types/OpenCvSharp/Size.d.ts +37 -0
  562. package/types/OpenCvSharp/Size2d.d.ts +42 -0
  563. package/types/OpenCvSharp/Size2f.d.ts +47 -0
  564. package/types/OpenCvSharp/SolveLPResult.d.ts +26 -0
  565. package/types/OpenCvSharp/SolvePnPFlags.d.ts +27 -0
  566. package/types/OpenCvSharp/SortFlags.d.ts +26 -0
  567. package/types/OpenCvSharp/SparseMat.d.ts +397 -0
  568. package/types/OpenCvSharp/SparseMatIndexer.d.ts +94 -0
  569. package/types/OpenCvSharp/StereoBM.d.ts +54 -0
  570. package/types/OpenCvSharp/StereoMatcher.d.ts +46 -0
  571. package/types/OpenCvSharp/StereoRectificationFlags.d.ts +27 -0
  572. package/types/OpenCvSharp/StereoSGBM.d.ts +139 -0
  573. package/types/OpenCvSharp/Stitcher.d.ts +136 -0
  574. package/types/OpenCvSharp/Subdiv2D.d.ts +144 -0
  575. package/types/OpenCvSharp/SuperResolution.d.ts +57 -0
  576. package/types/OpenCvSharp/TemplateMatchModes.d.ts +28 -0
  577. package/types/OpenCvSharp/TermCriteria.d.ts +51 -0
  578. package/types/OpenCvSharp/Text/BaseOCR.d.ts +65 -0
  579. package/types/OpenCvSharp/Text/ComponentLevels.d.ts +24 -0
  580. package/types/OpenCvSharp/Text/CvText.d.ts +37 -0
  581. package/types/OpenCvSharp/Text/OCRTesseract.d.ts +90 -0
  582. package/types/OpenCvSharp/TextDetector.d.ts +32 -0
  583. package/types/OpenCvSharp/TextDetectorCNN.d.ts +41 -0
  584. package/types/OpenCvSharp/ThresholdTypes.d.ts +30 -0
  585. package/types/OpenCvSharp/Tonemap.d.ts +36 -0
  586. package/types/OpenCvSharp/TonemapDrago.d.ts +42 -0
  587. package/types/OpenCvSharp/TonemapMantiuk.d.ts +42 -0
  588. package/types/OpenCvSharp/TonemapReinhard.d.ts +49 -0
  589. package/types/OpenCvSharp/TrackbarCallback.d.ts +33 -0
  590. package/types/OpenCvSharp/TrackbarCallbackNative.d.ts +36 -0
  591. package/types/OpenCvSharp/Tracker.d.ts +29 -0
  592. package/types/OpenCvSharp/TrackerGOTURN.d.ts +46 -0
  593. package/types/OpenCvSharp/TrackerMIL.d.ts +50 -0
  594. package/types/OpenCvSharp/Tracking/TrackerCSRT.d.ts +76 -0
  595. package/types/OpenCvSharp/Tracking/TrackerKCF.d.ts +61 -0
  596. package/types/OpenCvSharp/Tracking/TrackerTypes.d.ts +28 -0
  597. package/types/OpenCvSharp/UMat.d.ts +358 -0
  598. package/types/OpenCvSharp/UMatUsageFlags.d.ts +26 -0
  599. package/types/OpenCvSharp/UsacParams.d.ts +150 -0
  600. package/types/OpenCvSharp/Vec2b.d.ts +58 -0
  601. package/types/OpenCvSharp/Vec2d.d.ts +46 -0
  602. package/types/OpenCvSharp/Vec2f.d.ts +51 -0
  603. package/types/OpenCvSharp/Vec2i.d.ts +50 -0
  604. package/types/OpenCvSharp/Vec2s.d.ts +55 -0
  605. package/types/OpenCvSharp/Vec2w.d.ts +55 -0
  606. package/types/OpenCvSharp/Vec3b.d.ts +66 -0
  607. package/types/OpenCvSharp/Vec3d.d.ts +55 -0
  608. package/types/OpenCvSharp/Vec3f.d.ts +60 -0
  609. package/types/OpenCvSharp/Vec3i.d.ts +59 -0
  610. package/types/OpenCvSharp/Vec3s.d.ts +64 -0
  611. package/types/OpenCvSharp/Vec3w.d.ts +64 -0
  612. package/types/OpenCvSharp/Vec4b.d.ts +69 -0
  613. package/types/OpenCvSharp/Vec4d.d.ts +58 -0
  614. package/types/OpenCvSharp/Vec4f.d.ts +63 -0
  615. package/types/OpenCvSharp/Vec4i.d.ts +62 -0
  616. package/types/OpenCvSharp/Vec4s.d.ts +67 -0
  617. package/types/OpenCvSharp/Vec4w.d.ts +67 -0
  618. package/types/OpenCvSharp/Vec6b.d.ts +75 -0
  619. package/types/OpenCvSharp/Vec6d.d.ts +64 -0
  620. package/types/OpenCvSharp/Vec6f.d.ts +69 -0
  621. package/types/OpenCvSharp/Vec6i.d.ts +68 -0
  622. package/types/OpenCvSharp/Vec6s.d.ts +73 -0
  623. package/types/OpenCvSharp/Vec6w.d.ts +73 -0
  624. package/types/OpenCvSharp/VideoAccelerationType.d.ts +30 -0
  625. package/types/OpenCvSharp/VideoCapture.d.ts +288 -0
  626. package/types/OpenCvSharp/VideoCaptureAPIs.d.ts +53 -0
  627. package/types/OpenCvSharp/VideoCapturePara.d.ts +43 -0
  628. package/types/OpenCvSharp/VideoCaptureProperties.d.ts +152 -0
  629. package/types/OpenCvSharp/VideoWriter.d.ts +164 -0
  630. package/types/OpenCvSharp/VideoWriterPara.d.ts +43 -0
  631. package/types/OpenCvSharp/VideoWriterProperties.d.ts +32 -0
  632. package/types/OpenCvSharp/WarpPolarMode.d.ts +24 -0
  633. package/types/OpenCvSharp/WeChatQRCode.d.ts +39 -0
  634. package/types/OpenCvSharp/Window.d.ts +113 -0
  635. package/types/OpenCvSharp/WindowFlags.d.ts +30 -0
  636. package/types/OpenCvSharp/WindowPropertyFlags.d.ts +28 -0
  637. package/types/OpenCvSharp/XFeatures2D/BriefDescriptorExtractor.d.ts +35 -0
  638. package/types/OpenCvSharp/XFeatures2D/FREAK.d.ts +49 -0
  639. package/types/OpenCvSharp/XFeatures2D/LATCH.d.ts +44 -0
  640. package/types/OpenCvSharp/XFeatures2D/LUCID.d.ts +32 -0
  641. package/types/OpenCvSharp/XFeatures2D/SURF.d.ts +61 -0
  642. package/types/OpenCvSharp/XFeatures2D/StarDetector.d.ts +50 -0
  643. package/types/OpenCvSharp/XImgProc/AdaptiveManifoldFilter.d.ts +59 -0
  644. package/types/OpenCvSharp/XImgProc/AngleRangeOption.d.ts +31 -0
  645. package/types/OpenCvSharp/XImgProc/CvXImgProc.d.ts +858 -0
  646. package/types/OpenCvSharp/XImgProc/DTFilter.d.ts +59 -0
  647. package/types/OpenCvSharp/XImgProc/EdgeAwareFiltersList.d.ts +30 -0
  648. package/types/OpenCvSharp/XImgProc/EdgeBoxes.d.ts +168 -0
  649. package/types/OpenCvSharp/XImgProc/FastBilateralSolverFilter.d.ts +72 -0
  650. package/types/OpenCvSharp/XImgProc/FastGlobalSmootherFilter.d.ts +55 -0
  651. package/types/OpenCvSharp/XImgProc/FastLineDetector.d.ts +87 -0
  652. package/types/OpenCvSharp/XImgProc/GuidedFilter.d.ts +44 -0
  653. package/types/OpenCvSharp/XImgProc/HoughDeskewOption.d.ts +24 -0
  654. package/types/OpenCvSharp/XImgProc/HoughOP.d.ts +26 -0
  655. package/types/OpenCvSharp/XImgProc/LocalBinarizationMethods.d.ts +29 -0
  656. package/types/OpenCvSharp/XImgProc/RFFeatureGetter.d.ts +41 -0
  657. package/types/OpenCvSharp/XImgProc/RulesOption.d.ts +24 -0
  658. package/types/OpenCvSharp/XImgProc/SLICType.d.ts +25 -0
  659. package/types/OpenCvSharp/XImgProc/Segmentation/GraphSegmentation.d.ts +51 -0
  660. package/types/OpenCvSharp/XImgProc/Segmentation/SelectiveSearchSegmentation.d.ts +91 -0
  661. package/types/OpenCvSharp/XImgProc/Segmentation/SelectiveSearchSegmentationStrategy.d.ts +141 -0
  662. package/types/OpenCvSharp/XImgProc/Segmentation/SelectiveSearchSegmentationStrategyMultiple.d.ts +70 -0
  663. package/types/OpenCvSharp/XImgProc/StructuredEdgeDetection.d.ts +90 -0
  664. package/types/OpenCvSharp/XImgProc/SuperpixelLSC.d.ts +58 -0
  665. package/types/OpenCvSharp/XImgProc/SuperpixelSEEDS.d.ts +78 -0
  666. package/types/OpenCvSharp/XImgProc/SuperpixelSLIC.d.ts +66 -0
  667. package/types/OpenCvSharp/XImgProc/ThinningTypes.d.ts +24 -0
  668. package/types/OpenCvSharp/XImgProc/WMFWeightType.d.ts +28 -0
  669. package/types/OpenCvSharp/XPhoto/Bm3dSteps.d.ts +25 -0
  670. package/types/OpenCvSharp/XPhoto/CvXPhoto.d.ts +317 -0
  671. package/types/OpenCvSharp/XPhoto/GrayworldWB.d.ts +30 -0
  672. package/types/OpenCvSharp/XPhoto/InpaintTypes.d.ts +25 -0
  673. package/types/OpenCvSharp/XPhoto/LearningBasedWB.d.ts +40 -0
  674. package/types/OpenCvSharp/XPhoto/SimpleWB.d.ts +37 -0
  675. package/types/OpenCvSharp/XPhoto/TonemapDurand.d.ts +57 -0
  676. package/types/OpenCvSharp/XPhoto/TransformTypes.d.ts +23 -0
  677. package/types/OpenCvSharp/XPhoto/WhiteBalancer.d.ts +27 -0
  678. package/types/SixLabors/ImageSharp/Advanced/IConfigurationProvider.d.ts +34 -0
  679. package/types/SixLabors/ImageSharp/Color.d.ts +224 -0
  680. package/types/SixLabors/ImageSharp/ColorSpaces/CieXyz.d.ts +40 -0
  681. package/types/SixLabors/ImageSharp/ColorSpaces/Conversion/CieXyChromaticityCoordinates.d.ts +39 -0
  682. package/types/SixLabors/ImageSharp/ColorSpaces/Conversion/RGBPrimariesChromaticityCoordinates.d.ts +41 -0
  683. package/types/SixLabors/ImageSharp/ColorSpaces/Conversion/RgbWorkingSpace.d.ts +30 -0
  684. package/types/SixLabors/ImageSharp/ColorSpaces/Rgb.d.ts +53 -0
  685. package/types/SixLabors/ImageSharp/Configuration.d.ts +54 -0
  686. package/types/SixLabors/ImageSharp/Formats/DecoderOptions.d.ts +35 -0
  687. package/types/SixLabors/ImageSharp/Formats/IImageDecoder.d.ts +73 -0
  688. package/types/SixLabors/ImageSharp/Formats/IImageEncoder.d.ts +42 -0
  689. package/types/SixLabors/ImageSharp/Formats/IImageFormat.d.ts +102 -0
  690. package/types/SixLabors/ImageSharp/Formats/IImageFormatConfigurationModule.d.ts +36 -0
  691. package/types/SixLabors/ImageSharp/Formats/IImageFormatDetector.d.ts +33 -0
  692. package/types/SixLabors/ImageSharp/Formats/ImageFormatManager.d.ts +59 -0
  693. package/types/SixLabors/ImageSharp/Formats/PixelTypeInfo.d.ts +33 -0
  694. package/types/SixLabors/ImageSharp/GraphicsOptions.d.ts +35 -0
  695. package/types/SixLabors/ImageSharp/IDeepCloneable.d.ts +66 -0
  696. package/types/SixLabors/ImageSharp/Image.d.ts +401 -3
  697. package/types/SixLabors/ImageSharp/ImageFrame.d.ts +102 -0
  698. package/types/SixLabors/ImageSharp/ImageFrameCollection.d.ts +131 -0
  699. package/types/SixLabors/ImageSharp/ImageInfo.d.ts +45 -0
  700. package/types/SixLabors/ImageSharp/Memory/AllocationOptions.d.ts +28 -0
  701. package/types/SixLabors/ImageSharp/Memory/Buffer2D{T}.d.ts +42 -0
  702. package/types/SixLabors/ImageSharp/Memory/IMemoryGroup{T}.d.ts +51 -0
  703. package/types/SixLabors/ImageSharp/Memory/MemoryAllocator.d.ts +43 -0
  704. package/types/SixLabors/ImageSharp/Memory/MemoryAllocatorOptions.d.ts +27 -0
  705. package/types/SixLabors/ImageSharp/Metadata/ImageFrameMetadata.d.ts +48 -0
  706. package/types/SixLabors/ImageSharp/Metadata/ImageMetadata.d.ts +57 -0
  707. package/types/SixLabors/ImageSharp/Metadata/PixelResolutionUnit.d.ts +30 -0
  708. package/types/SixLabors/ImageSharp/Metadata/Profiles/Cicp/CicpColorPrimaries.d.ts +38 -0
  709. package/types/SixLabors/ImageSharp/Metadata/Profiles/Cicp/CicpMatrixCoefficients.d.ts +43 -0
  710. package/types/SixLabors/ImageSharp/Metadata/Profiles/Cicp/CicpProfile.d.ts +44 -0
  711. package/types/SixLabors/ImageSharp/Metadata/Profiles/Cicp/CicpTransferCharacteristics.d.ts +47 -0
  712. package/types/SixLabors/ImageSharp/Metadata/Profiles/Exif/EncodedString.d.ts +60 -0
  713. package/types/SixLabors/ImageSharp/Metadata/Profiles/Exif/ExifDataType.d.ts +43 -0
  714. package/types/SixLabors/ImageSharp/Metadata/Profiles/Exif/ExifParts.d.ts +31 -0
  715. package/types/SixLabors/ImageSharp/Metadata/Profiles/Exif/ExifProfile.d.ts +59 -0
  716. package/types/SixLabors/ImageSharp/Metadata/Profiles/Exif/ExifTag.d.ts +360 -0
  717. package/types/SixLabors/ImageSharp/Metadata/Profiles/Exif/IExifValue.d.ts +69 -0
  718. package/types/SixLabors/ImageSharp/Metadata/Profiles/Icc/IccColorSpaceType.d.ts +51 -0
  719. package/types/SixLabors/ImageSharp/Metadata/Profiles/Icc/IccDeviceAttribute.d.ts +34 -0
  720. package/types/SixLabors/ImageSharp/Metadata/Profiles/Icc/IccPrimaryPlatformType.d.ts +34 -0
  721. package/types/SixLabors/ImageSharp/Metadata/Profiles/Icc/IccProfile.d.ts +42 -0
  722. package/types/SixLabors/ImageSharp/Metadata/Profiles/Icc/IccProfileClass.d.ts +33 -0
  723. package/types/SixLabors/ImageSharp/Metadata/Profiles/Icc/IccProfileFlag.d.ts +31 -0
  724. package/types/SixLabors/ImageSharp/Metadata/Profiles/Icc/IccProfileHeader.d.ts +53 -0
  725. package/types/SixLabors/ImageSharp/Metadata/Profiles/Icc/IccProfileId.d.ts +41 -0
  726. package/types/SixLabors/ImageSharp/Metadata/Profiles/Icc/IccProfileTag.d.ts +90 -0
  727. package/types/SixLabors/ImageSharp/Metadata/Profiles/Icc/IccRenderingIntent.d.ts +30 -0
  728. package/types/SixLabors/ImageSharp/Metadata/Profiles/Icc/IccTagDataEntry.d.ts +28 -0
  729. package/types/SixLabors/ImageSharp/Metadata/Profiles/Icc/IccTypeSignature.d.ts +61 -0
  730. package/types/SixLabors/ImageSharp/Metadata/Profiles/Icc/IccVersion.d.ts +37 -0
  731. package/types/SixLabors/ImageSharp/Metadata/Profiles/Iptc/IptcProfile.d.ts +76 -0
  732. package/types/SixLabors/ImageSharp/Metadata/Profiles/Iptc/IptcTag.d.ts +95 -0
  733. package/types/SixLabors/ImageSharp/Metadata/Profiles/Iptc/IptcValue.d.ts +36 -0
  734. package/types/SixLabors/ImageSharp/Metadata/Profiles/Xmp/XmpProfile.d.ts +35 -0
  735. package/types/SixLabors/ImageSharp/Number.d.ts +36 -0
  736. package/types/SixLabors/ImageSharp/PixelAccessorAction.d.ts +86 -0
  737. package/types/SixLabors/ImageSharp/PixelFormats/Abgr32.d.ts +104 -0
  738. package/types/SixLabors/ImageSharp/PixelFormats/Argb32.d.ts +104 -0
  739. package/types/SixLabors/ImageSharp/PixelFormats/Bgr24.d.ts +73 -0
  740. package/types/SixLabors/ImageSharp/PixelFormats/Bgra32.d.ts +87 -0
  741. package/types/SixLabors/ImageSharp/PixelFormats/Bgra5551.d.ts +78 -0
  742. package/types/SixLabors/ImageSharp/PixelFormats/IPackedVector{TPacked}.d.ts +45 -0
  743. package/types/SixLabors/ImageSharp/PixelFormats/IPixel.d.ts +94 -0
  744. package/types/SixLabors/ImageSharp/PixelFormats/L16.d.ts +72 -0
  745. package/types/SixLabors/ImageSharp/PixelFormats/L8.d.ts +72 -0
  746. package/types/SixLabors/ImageSharp/PixelFormats/La16.d.ts +74 -0
  747. package/types/SixLabors/ImageSharp/PixelFormats/La32.d.ts +74 -0
  748. package/types/SixLabors/ImageSharp/PixelFormats/PixelAlphaCompositionMode.d.ts +42 -0
  749. package/types/SixLabors/ImageSharp/PixelFormats/PixelAlphaRepresentation.d.ts +32 -0
  750. package/types/SixLabors/ImageSharp/PixelFormats/PixelBlender{TPixel}.d.ts +33 -0
  751. package/types/SixLabors/ImageSharp/PixelFormats/PixelColorBlendingMode.d.ts +38 -0
  752. package/types/SixLabors/ImageSharp/PixelFormats/PixelOperations{TPixel}.d.ts +62 -0
  753. package/types/SixLabors/ImageSharp/PixelFormats/Rgb24.d.ts +73 -0
  754. package/types/SixLabors/ImageSharp/PixelFormats/Rgb48.d.ts +73 -0
  755. package/types/SixLabors/ImageSharp/PixelFormats/Rgba32.d.ts +112 -0
  756. package/types/SixLabors/ImageSharp/PixelFormats/Rgba64.d.ts +95 -0
  757. package/types/SixLabors/ImageSharp/Point.d.ts +65 -0
  758. package/types/SixLabors/ImageSharp/PointF.d.ts +69 -0
  759. package/types/SixLabors/ImageSharp/Processing/Processors/IImageProcessor{TPixel}.d.ts +47 -0
  760. package/types/SixLabors/ImageSharp/Processing/Processors/Transforms/IResampler.d.ts +39 -0
  761. package/types/SixLabors/ImageSharp/Processing/Processors/Transforms/IResamplingTransformImageProcessor{TPixel}.d.ts +56 -0
  762. package/types/SixLabors/ImageSharp/Rational.d.ts +53 -0
  763. package/types/SixLabors/ImageSharp/ReadOrigin.d.ts +24 -0
  764. package/types/SixLabors/ImageSharp/Rectangle.d.ts +99 -0
  765. package/types/SixLabors/ImageSharp/RectangleF.d.ts +98 -0
  766. package/types/SixLabors/ImageSharp/SignedRational.d.ts +52 -0
  767. package/types/SixLabors/ImageSharp/Size.d.ts +55 -0
  768. package/types/SixLabors/ImageSharp/SizeF.d.ts +56 -0
  769. package/types/System/Action.d.ts +235 -0
  770. package/types/System/AggregateException.d.ts +69 -0
  771. package/types/System/Array.d.ts +441 -0
  772. package/types/System/ArraySegment.d.ts +108 -0
  773. package/types/System/AsyncCallback.d.ts +26 -0
  774. package/types/System/Attribute.d.ts +148 -0
  775. package/types/System/Boolean.d.ts +46 -0
  776. package/types/System/Buffers/IBufferWriter.d.ts +50 -0
  777. package/types/System/Buffers/IMemoryOwner.d.ts +46 -0
  778. package/types/System/Buffers/IPinnable.d.ts +35 -0
  779. package/types/System/Buffers/MemoryHandle.d.ts +22 -0
  780. package/types/System/Buffers/MemoryManager.d.ts +46 -0
  781. package/types/System/Buffers/ReadOnlySequence.d.ts +129 -0
  782. package/types/System/Buffers/ReadOnlySequenceSegment.d.ts +34 -0
  783. package/types/System/Buffers/SpanAction.d.ts +45 -0
  784. package/types/System/Byte.d.ts +156 -0
  785. package/types/System/Char.d.ts +172 -0
  786. package/types/System/CharEnumerator.d.ts +32 -0
  787. package/types/System/Collections/CollectionBase.d.ts +37 -0
  788. package/types/System/Collections/Concurrent/ConcurrentDictionary.d.ts +142 -0
  789. package/types/System/Collections/DictionaryEntry.d.ts +19 -8
  790. package/types/System/Collections/Generic/Dictionary.d.ts +263 -179
  791. package/types/System/Collections/Generic/HashSet.d.ts +134 -0
  792. package/types/System/Collections/Generic/ICollection.d.ts +44 -11
  793. package/types/System/Collections/Generic/IComparer.d.ts +44 -0
  794. package/types/System/Collections/Generic/IDictionary.d.ts +55 -3
  795. package/types/System/Collections/Generic/IEnumerable.d.ts +38 -4
  796. package/types/System/Collections/Generic/IEnumerator.d.ts +38 -4
  797. package/types/System/Collections/Generic/IEqualityComparer.d.ts +39 -4
  798. package/types/System/Collections/Generic/IList.d.ts +42 -11
  799. package/types/System/Collections/Generic/IReadOnlyCollection.d.ts +40 -3
  800. package/types/System/Collections/Generic/IReadOnlyDictionary.d.ts +51 -9
  801. package/types/System/Collections/Generic/IReadOnlyList.d.ts +45 -3
  802. package/types/System/Collections/Generic/IReadOnlySet.d.ts +53 -0
  803. package/types/System/Collections/Generic/ISet.d.ts +52 -0
  804. package/types/System/Collections/Generic/KeyValuePair.d.ts +35 -12
  805. package/types/System/Collections/Generic/List.d.ts +180 -139
  806. package/types/System/Collections/ICollection.d.ts +29 -8
  807. package/types/System/Collections/IComparer.d.ts +27 -0
  808. package/types/System/Collections/IDictionary.d.ts +33 -18
  809. package/types/System/Collections/IDictionaryEnumerator.d.ts +28 -6
  810. package/types/System/Collections/IEnumerable.d.ts +22 -3
  811. package/types/System/Collections/IEnumerator.d.ts +23 -6
  812. package/types/System/Collections/IEqualityComparer.d.ts +24 -4
  813. package/types/System/Collections/IList.d.ts +39 -21
  814. package/types/System/Collections/IStructuralComparable.d.ts +26 -4
  815. package/types/System/Collections/IStructuralEquatable.d.ts +25 -4
  816. package/types/System/Collections/ObjectModel/Collection.d.ts +71 -0
  817. package/types/System/Collections/ObjectModel/ReadOnlyCollection.d.ts +64 -0
  818. package/types/System/Collections/ReadOnlyCollectionBase.d.ts +29 -0
  819. package/types/System/Collections/Specialized/StringDictionary.d.ts +50 -0
  820. package/types/System/Comparison.d.ts +39 -0
  821. package/types/System/ComponentModel/Component.d.ts +42 -0
  822. package/types/System/ComponentModel/ComponentCollection.d.ts +46 -0
  823. package/types/System/ComponentModel/IComponent.d.ts +32 -0
  824. package/types/System/ComponentModel/IContainer.d.ts +34 -0
  825. package/types/System/ComponentModel/INotifyPropertyChanged.d.ts +37 -0
  826. package/types/System/ComponentModel/INotifyPropertyChanging.d.ts +37 -0
  827. package/types/System/ComponentModel/ISite.d.ts +32 -0
  828. package/types/System/ComponentModel/ISynchronizeInvoke.d.ts +35 -0
  829. package/types/System/ComponentModel/PropertyChangedEventArgs.d.ts +23 -0
  830. package/types/System/ComponentModel/PropertyChangedEventHandler.d.ts +36 -0
  831. package/types/System/ComponentModel/PropertyChangingEventArgs.d.ts +24 -0
  832. package/types/System/ComponentModel/PropertyChangingEventHandler.d.ts +36 -0
  833. package/types/System/Configuration/Assemblies/AssemblyHashAlgorithm.d.ts +35 -0
  834. package/types/System/Configuration/Assemblies/AssemblyVersionCompatibility.d.ts +33 -0
  835. package/types/System/Converter.d.ts +44 -0
  836. package/types/System/DateOnly.d.ts +154 -0
  837. package/types/System/DateTime.d.ts +308 -3
  838. package/types/System/DateTimeKind.d.ts +25 -0
  839. package/types/System/DateTimeOffset.d.ts +218 -3
  840. package/types/System/DayOfWeek.d.ts +29 -0
  841. package/types/System/Decimal.d.ts +225 -0
  842. package/types/System/Delegate.d.ts +78 -0
  843. package/types/System/Diagnostics/DataReceivedEventArgs.d.ts +21 -0
  844. package/types/System/Diagnostics/DataReceivedEventHandler.d.ts +35 -0
  845. package/types/System/Diagnostics/FileVersionInfo.d.ts +50 -0
  846. package/types/System/Diagnostics/Process.d.ts +230 -0
  847. package/types/System/Diagnostics/ProcessModule.d.ts +41 -0
  848. package/types/System/Diagnostics/ProcessModuleCollection.d.ts +46 -0
  849. package/types/System/Diagnostics/ProcessPriorityClass.d.ts +31 -0
  850. package/types/System/Diagnostics/ProcessStartInfo.d.ts +66 -0
  851. package/types/System/Diagnostics/ProcessThread.d.ts +69 -0
  852. package/types/System/Diagnostics/ProcessThreadCollection.d.ts +55 -0
  853. package/types/System/Diagnostics/ProcessWindowStyle.d.ts +26 -0
  854. package/types/System/Diagnostics/ThreadPriorityLevel.d.ts +29 -0
  855. package/types/System/Diagnostics/ThreadState.d.ts +30 -0
  856. package/types/System/Diagnostics/ThreadWaitReason.d.ts +36 -0
  857. package/types/System/Dispatch.d.ts +28 -0
  858. package/types/System/Double.d.ts +272 -0
  859. package/types/System/Drawing/Bitmap.d.ts +119 -2
  860. package/types/System/Drawing/Brush.d.ts +26 -0
  861. package/types/System/Drawing/CharacterRange.d.ts +34 -0
  862. package/types/System/Drawing/Color.d.ts +198 -334
  863. package/types/System/Drawing/CopyPixelOperation.d.ts +39 -0
  864. package/types/System/Drawing/Drawing2D/CombineMode.d.ts +32 -0
  865. package/types/System/Drawing/Drawing2D/CompositingMode.d.ts +28 -0
  866. package/types/System/Drawing/Drawing2D/CompositingQuality.d.ts +32 -0
  867. package/types/System/Drawing/Drawing2D/CoordinateSpace.d.ts +29 -0
  868. package/types/System/Drawing/Drawing2D/CustomLineCap.d.ts +74 -0
  869. package/types/System/Drawing/Drawing2D/DashCap.d.ts +29 -0
  870. package/types/System/Drawing/Drawing2D/DashStyle.d.ts +32 -0
  871. package/types/System/Drawing/Drawing2D/FillMode.d.ts +28 -0
  872. package/types/System/Drawing/Drawing2D/FlushIntention.d.ts +28 -0
  873. package/types/System/Drawing/Drawing2D/GraphicsContainer.d.ts +20 -0
  874. package/types/System/Drawing/Drawing2D/GraphicsPath.d.ts +409 -0
  875. package/types/System/Drawing/Drawing2D/GraphicsState.d.ts +17 -0
  876. package/types/System/Drawing/Drawing2D/InterpolationMode.d.ts +35 -0
  877. package/types/System/Drawing/Drawing2D/LineCap.d.ts +37 -0
  878. package/types/System/Drawing/Drawing2D/LineJoin.d.ts +30 -0
  879. package/types/System/Drawing/Drawing2D/Matrix.d.ts +142 -0
  880. package/types/System/Drawing/Drawing2D/MatrixOrder.d.ts +28 -0
  881. package/types/System/Drawing/Drawing2D/PathData.d.ts +30 -0
  882. package/types/System/Drawing/Drawing2D/PenAlignment.d.ts +31 -0
  883. package/types/System/Drawing/Drawing2D/PenType.d.ts +31 -0
  884. package/types/System/Drawing/Drawing2D/PixelOffsetMode.d.ts +32 -0
  885. package/types/System/Drawing/Drawing2D/RegionData.d.ts +22 -0
  886. package/types/System/Drawing/Drawing2D/SmoothingMode.d.ts +32 -0
  887. package/types/System/Drawing/Drawing2D/WarpMode.d.ts +28 -0
  888. package/types/System/Drawing/Drawing2D/WrapMode.d.ts +31 -0
  889. package/types/System/Drawing/Font.d.ts +173 -0
  890. package/types/System/Drawing/FontFamily.d.ts +66 -0
  891. package/types/System/Drawing/FontStyle.d.ts +27 -0
  892. package/types/System/Drawing/Graphics.d.ts +1289 -0
  893. package/types/System/Drawing/GraphicsUnit.d.ts +29 -0
  894. package/types/System/Drawing/IDeviceContext.d.ts +31 -0
  895. package/types/System/Drawing/Icon.d.ts +91 -0
  896. package/types/System/Drawing/Image.d.ts +165 -3
  897. package/types/System/Drawing/Imaging/BitmapData.d.ts +34 -0
  898. package/types/System/Drawing/Imaging/CachedBitmap.d.ts +27 -0
  899. package/types/System/Drawing/Imaging/ColorAdjustType.d.ts +33 -0
  900. package/types/System/Drawing/Imaging/ColorChannelFlag.d.ts +31 -0
  901. package/types/System/Drawing/Imaging/ColorMap.d.ts +29 -0
  902. package/types/System/Drawing/Imaging/ColorMatrix.d.ts +65 -0
  903. package/types/System/Drawing/Imaging/ColorMatrixFlag.d.ts +29 -0
  904. package/types/System/Drawing/Imaging/ColorPalette.d.ts +24 -0
  905. package/types/System/Drawing/Imaging/EmfPlusRecordType.d.ts +279 -0
  906. package/types/System/Drawing/Imaging/EmfType.d.ts +29 -0
  907. package/types/System/Drawing/Imaging/Encoder.d.ts +37 -0
  908. package/types/System/Drawing/Imaging/EncoderParameter.d.ts +119 -0
  909. package/types/System/Drawing/Imaging/EncoderParameterValueType.d.ts +39 -0
  910. package/types/System/Drawing/Imaging/EncoderParameters.d.ts +35 -0
  911. package/types/System/Drawing/Imaging/FrameDimension.d.ts +30 -0
  912. package/types/System/Drawing/Imaging/ImageAttributes.d.ts +138 -0
  913. package/types/System/Drawing/Imaging/ImageCodecFlags.d.ts +35 -0
  914. package/types/System/Drawing/Imaging/ImageCodecInfo.d.ts +37 -0
  915. package/types/System/Drawing/Imaging/ImageFormat.d.ts +39 -0
  916. package/types/System/Drawing/Imaging/ImageLockMode.d.ts +30 -0
  917. package/types/System/Drawing/Imaging/MetaHeader.d.ts +33 -0
  918. package/types/System/Drawing/Imaging/Metafile.d.ts +257 -0
  919. package/types/System/Drawing/Imaging/MetafileFrameUnit.d.ts +32 -0
  920. package/types/System/Drawing/Imaging/MetafileHeader.d.ts +41 -0
  921. package/types/System/Drawing/Imaging/MetafileType.d.ts +32 -0
  922. package/types/System/Drawing/Imaging/PixelFormat.d.ts +49 -0
  923. package/types/System/Drawing/Imaging/PlayRecordCallback.d.ts +48 -0
  924. package/types/System/Drawing/Imaging/PropertyItem.d.ts +25 -0
  925. package/types/System/Drawing/Imaging/WmfPlaceableFileHeader.d.ts +35 -0
  926. package/types/System/Drawing/Interop/LOGFONT.d.ts +34 -0
  927. package/types/System/Drawing/KnownColor.d.ts +191 -351
  928. package/types/System/Drawing/Pen.d.ts +121 -3
  929. package/types/System/Drawing/Point.d.ts +46 -0
  930. package/types/System/Drawing/PointF.d.ts +43 -0
  931. package/types/System/Drawing/Rectangle.d.ts +80 -0
  932. package/types/System/Drawing/RectangleF.d.ts +76 -0
  933. package/types/System/Drawing/Region.d.ts +157 -0
  934. package/types/System/Drawing/RotateFlipType.d.ts +38 -0
  935. package/types/System/Drawing/Size.d.ts +42 -0
  936. package/types/System/Drawing/SizeF.d.ts +48 -0
  937. package/types/System/Drawing/StringAlignment.d.ts +25 -0
  938. package/types/System/Drawing/StringDigitSubstitute.d.ts +29 -0
  939. package/types/System/Drawing/StringFormat.d.ts +89 -0
  940. package/types/System/Drawing/StringFormatFlags.d.ts +31 -0
  941. package/types/System/Drawing/StringTrimming.d.ts +28 -0
  942. package/types/System/Drawing/Text/FontCollection.d.ts +26 -0
  943. package/types/System/Drawing/Text/GenericFontFamilies.d.ts +29 -0
  944. package/types/System/Drawing/Text/HotkeyPrefix.d.ts +29 -0
  945. package/types/System/Drawing/Text/TextRenderingHint.d.ts +32 -0
  946. package/types/System/Dynamic/BinaryOperationBinder.d.ts +41 -0
  947. package/types/System/Dynamic/BindingRestrictions.d.ts +45 -0
  948. package/types/System/Dynamic/CallInfo.d.ts +36 -0
  949. package/types/System/Dynamic/ConvertBinder.d.ts +34 -0
  950. package/types/System/Dynamic/CreateInstanceBinder.d.ts +41 -0
  951. package/types/System/Dynamic/DeleteIndexBinder.d.ts +41 -0
  952. package/types/System/Dynamic/DeleteMemberBinder.d.ts +37 -0
  953. package/types/System/Dynamic/DynamicMetaObject.d.ts +96 -0
  954. package/types/System/Dynamic/DynamicMetaObjectBinder.d.ts +50 -0
  955. package/types/System/Dynamic/DynamicObject.d.ts +86 -0
  956. package/types/System/Dynamic/GetIndexBinder.d.ts +38 -0
  957. package/types/System/Dynamic/GetMemberBinder.d.ts +34 -0
  958. package/types/System/Dynamic/IDynamicMetaObjectProvider.d.ts +36 -0
  959. package/types/System/Dynamic/InvokeBinder.d.ts +38 -0
  960. package/types/System/Dynamic/InvokeMemberBinder.d.ts +54 -0
  961. package/types/System/Dynamic/SetIndexBinder.d.ts +40 -0
  962. package/types/System/Dynamic/SetMemberBinder.d.ts +38 -0
  963. package/types/System/Dynamic/UnaryOperationBinder.d.ts +39 -0
  964. package/types/System/Enum.d.ts +99 -0
  965. package/types/System/EventArgs.d.ts +27 -0
  966. package/types/System/EventHandler.d.ts +57 -0
  967. package/types/System/Func.d.ts +247 -0
  968. package/types/System/Globalization/Calendar.d.ts +135 -0
  969. package/types/System/Globalization/CalendarAlgorithmType.d.ts +29 -0
  970. package/types/System/Globalization/CalendarWeekRule.d.ts +25 -0
  971. package/types/System/Globalization/CompareInfo.d.ts +217 -0
  972. package/types/System/Globalization/CompareOptions.d.ts +31 -0
  973. package/types/System/Globalization/CultureInfo.d.ts +78 -3
  974. package/types/System/Globalization/CultureTypes.d.ts +30 -0
  975. package/types/System/Globalization/DateTimeFormatInfo.d.ts +85 -0
  976. package/types/System/Globalization/DateTimeStyles.d.ts +32 -0
  977. package/types/System/Globalization/DigitShapes.d.ts +25 -0
  978. package/types/System/Globalization/NumberFormatInfo.d.ts +66 -0
  979. package/types/System/Globalization/NumberStyles.d.ts +41 -0
  980. package/types/System/Globalization/SortKey.d.ts +28 -0
  981. package/types/System/Globalization/SortVersion.d.ts +31 -0
  982. package/types/System/Globalization/TextInfo.d.ts +48 -0
  983. package/types/System/Globalization/TimeSpanStyles.d.ts +24 -0
  984. package/types/System/Globalization/UnicodeCategory.d.ts +52 -0
  985. package/types/System/Guid.d.ts +104 -0
  986. package/types/System/IAsyncDisposable.d.ts +20 -3
  987. package/types/System/IAsyncResult.d.ts +31 -0
  988. package/types/System/ICloneable.d.ts +27 -0
  989. package/types/System/IComparable.d.ts +56 -3
  990. package/types/System/IConvertible.d.ts +47 -0
  991. package/types/System/IDisposable.d.ts +22 -3
  992. package/types/System/IEquatable.d.ts +38 -3
  993. package/types/System/IFormatProvider.d.ts +28 -0
  994. package/types/System/IFormattable.d.ts +28 -0
  995. package/types/System/IO/FileAccess.d.ts +25 -0
  996. package/types/System/IO/FileMode.d.ts +28 -0
  997. package/types/System/IO/FileOptions.d.ts +29 -0
  998. package/types/System/IO/FileShare.d.ts +28 -0
  999. package/types/System/IO/FileStream.d.ts +227 -0
  1000. package/types/System/IO/FileStreamOptions.d.ts +39 -0
  1001. package/types/System/IO/MemoryStream.d.ts +145 -0
  1002. package/types/System/IO/SeekOrigin.d.ts +25 -0
  1003. package/types/System/IO/Stream.d.ts +204 -0
  1004. package/types/System/IO/StreamReader.d.ts +153 -0
  1005. package/types/System/IO/StreamWriter.d.ts +149 -0
  1006. package/types/System/IO/TextReader.d.ts +90 -0
  1007. package/types/System/IO/TextWriter.d.ts +163 -0
  1008. package/types/System/IO/UnixFileMode.d.ts +35 -0
  1009. package/types/System/IParsable.d.ts +51 -0
  1010. package/types/System/ISpanFormattable.d.ts +27 -0
  1011. package/types/System/ISpanParsable.d.ts +44 -0
  1012. package/types/System/IUtf8SpanFormattable.d.ts +31 -0
  1013. package/types/System/IUtf8SpanParsable.d.ts +44 -0
  1014. package/types/System/Index.d.ts +38 -0
  1015. package/types/System/Int16.d.ts +165 -0
  1016. package/types/System/Int32.d.ts +164 -0
  1017. package/types/System/Int64.d.ts +165 -0
  1018. package/types/System/IntPtr.d.ts +132 -0
  1019. package/types/System/Lazy.d.ts +46 -0
  1020. package/types/System/Linq/Expressions/BinaryExpression.d.ts +43 -0
  1021. package/types/System/Linq/Expressions/BlockExpression.d.ts +34 -0
  1022. package/types/System/Linq/Expressions/CatchBlock.d.ts +33 -0
  1023. package/types/System/Linq/Expressions/ConditionalExpression.d.ts +35 -0
  1024. package/types/System/Linq/Expressions/ConstantExpression.d.ts +28 -0
  1025. package/types/System/Linq/Expressions/DebugInfoExpression.d.ts +41 -0
  1026. package/types/System/Linq/Expressions/DefaultExpression.d.ts +27 -0
  1027. package/types/System/Linq/Expressions/DynamicExpression.d.ts +135 -0
  1028. package/types/System/Linq/Expressions/ElementInit.d.ts +35 -0
  1029. package/types/System/Linq/Expressions/Expression.d.ts +1631 -0
  1030. package/types/System/Linq/Expressions/ExpressionType.d.ts +111 -0
  1031. package/types/System/Linq/Expressions/GotoExpression.d.ts +33 -0
  1032. package/types/System/Linq/Expressions/GotoExpressionKind.d.ts +30 -0
  1033. package/types/System/Linq/Expressions/IArgumentProvider.d.ts +37 -0
  1034. package/types/System/Linq/Expressions/IDynamicExpression.d.ts +39 -0
  1035. package/types/System/Linq/Expressions/IndexExpression.d.ts +52 -0
  1036. package/types/System/Linq/Expressions/InvocationExpression.d.ts +46 -0
  1037. package/types/System/Linq/Expressions/LabelExpression.d.ts +31 -0
  1038. package/types/System/Linq/Expressions/LabelTarget.d.ts +24 -0
  1039. package/types/System/Linq/Expressions/LambdaExpression.d.ts +39 -0
  1040. package/types/System/Linq/Expressions/ListInitExpression.d.ts +39 -0
  1041. package/types/System/Linq/Expressions/LoopExpression.d.ts +33 -0
  1042. package/types/System/Linq/Expressions/MemberAssignment.d.ts +23 -0
  1043. package/types/System/Linq/Expressions/MemberBinding.d.ts +25 -0
  1044. package/types/System/Linq/Expressions/MemberBindingType.d.ts +29 -0
  1045. package/types/System/Linq/Expressions/MemberExpression.d.ts +28 -0
  1046. package/types/System/Linq/Expressions/MemberInitExpression.d.ts +39 -0
  1047. package/types/System/Linq/Expressions/MemberListBinding.d.ts +30 -0
  1048. package/types/System/Linq/Expressions/MemberMemberBinding.d.ts +29 -0
  1049. package/types/System/Linq/Expressions/MethodCallExpression.d.ts +55 -0
  1050. package/types/System/Linq/Expressions/NewArrayExpression.d.ts +31 -0
  1051. package/types/System/Linq/Expressions/NewExpression.d.ts +52 -0
  1052. package/types/System/Linq/Expressions/ParameterExpression.d.ts +29 -0
  1053. package/types/System/Linq/Expressions/RuntimeVariablesExpression.d.ts +35 -0
  1054. package/types/System/Linq/Expressions/SwitchCase.d.ts +30 -0
  1055. package/types/System/Linq/Expressions/SwitchExpression.d.ts +37 -0
  1056. package/types/System/Linq/Expressions/SymbolDocumentInfo.d.ts +28 -0
  1057. package/types/System/Linq/Expressions/TryExpression.d.ts +37 -0
  1058. package/types/System/Linq/Expressions/TypeBinaryExpression.d.ts +32 -0
  1059. package/types/System/Linq/Expressions/UnaryExpression.d.ts +40 -0
  1060. package/types/System/MarshalByRefObject.d.ts +21 -0
  1061. package/types/System/Memory.d.ts +56 -0
  1062. package/types/System/MidpointRounding.d.ts +27 -0
  1063. package/types/System/ModuleHandle.d.ts +61 -0
  1064. package/types/System/MulticastDelegate.d.ts +24 -0
  1065. package/types/System/Net/ICredentials.d.ts +29 -0
  1066. package/types/System/Net/ICredentialsByHost.d.ts +40 -0
  1067. package/types/System/Net/NetworkCredential.d.ts +54 -0
  1068. package/types/System/Nullable.d.ts +36 -0
  1069. package/types/System/Numerics/IAdditionOperators.d.ts +54 -0
  1070. package/types/System/Numerics/IAdditiveIdentity.d.ts +55 -0
  1071. package/types/System/Numerics/IBinaryFloatingPointIeee754.d.ts +81 -0
  1072. package/types/System/Numerics/IBinaryInteger.d.ts +105 -0
  1073. package/types/System/Numerics/IBinaryNumber.d.ts +70 -0
  1074. package/types/System/Numerics/IBitwiseOperators.d.ts +57 -0
  1075. package/types/System/Numerics/IComparisonOperators.d.ts +61 -0
  1076. package/types/System/Numerics/IDecrementOperators.d.ts +44 -0
  1077. package/types/System/Numerics/IDivisionOperators.d.ts +54 -0
  1078. package/types/System/Numerics/IEqualityOperators.d.ts +54 -0
  1079. package/types/System/Numerics/IExponentialFunctions.d.ts +72 -0
  1080. package/types/System/Numerics/IFloatingPoint.d.ts +110 -0
  1081. package/types/System/Numerics/IFloatingPointConstants.d.ts +68 -0
  1082. package/types/System/Numerics/IFloatingPointIeee754.d.ts +96 -0
  1083. package/types/System/Numerics/IHyperbolicFunctions.d.ts +72 -0
  1084. package/types/System/Numerics/IIncrementOperators.d.ts +44 -0
  1085. package/types/System/Numerics/ILogarithmicFunctions.d.ts +73 -0
  1086. package/types/System/Numerics/IMinMaxValue.d.ts +45 -0
  1087. package/types/System/Numerics/IModulusOperators.d.ts +57 -0
  1088. package/types/System/Numerics/IMultiplicativeIdentity.d.ts +56 -0
  1089. package/types/System/Numerics/IMultiplyOperators.d.ts +54 -0
  1090. package/types/System/Numerics/INumber.d.ts +72 -0
  1091. package/types/System/Numerics/INumberBase.d.ts +104 -0
  1092. package/types/System/Numerics/IPowerFunctions.d.ts +64 -0
  1093. package/types/System/Numerics/IRootFunctions.d.ts +69 -0
  1094. package/types/System/Numerics/IShiftOperators.d.ts +57 -0
  1095. package/types/System/Numerics/ISignedNumber.d.ts +63 -0
  1096. package/types/System/Numerics/ISubtractionOperators.d.ts +60 -0
  1097. package/types/System/Numerics/ITrigonometricFunctions.d.ts +83 -0
  1098. package/types/System/Numerics/IUnaryNegationOperators.d.ts +54 -0
  1099. package/types/System/Numerics/IUnaryPlusOperators.d.ts +51 -0
  1100. package/types/System/Numerics/IUnsignedNumber.d.ts +62 -0
  1101. package/types/System/Numerics/Matrix3x2.d.ts +123 -0
  1102. package/types/System/Numerics/Matrix4x4.d.ts +299 -0
  1103. package/types/System/Numerics/Plane.d.ts +57 -0
  1104. package/types/System/Numerics/Quaternion.d.ts +108 -0
  1105. package/types/System/Numerics/Tensors/IReadOnlyTensor.d.ts +68 -0
  1106. package/types/System/Numerics/Tensors/ITensor.d.ts +70 -0
  1107. package/types/System/Numerics/Tensors/Tensor.d.ts +58 -0
  1108. package/types/System/Numerics/Vector2.d.ts +121 -0
  1109. package/types/System/Numerics/Vector3.d.ts +124 -0
  1110. package/types/System/Numerics/Vector4.d.ts +137 -0
  1111. package/types/System/Object.d.ts +29 -0
  1112. package/types/System/Predicate.d.ts +39 -0
  1113. package/types/System/Range.d.ts +38 -0
  1114. package/types/System/ReadOnlyMemory.d.ts +60 -0
  1115. package/types/System/Reflection/Assembly.d.ts +158 -0
  1116. package/types/System/Reflection/AssemblyContentType.d.ts +24 -0
  1117. package/types/System/Reflection/AssemblyName.d.ts +78 -0
  1118. package/types/System/Reflection/AssemblyNameFlags.d.ts +27 -0
  1119. package/types/System/Reflection/Binder.d.ts +65 -0
  1120. package/types/System/Reflection/BindingFlags.d.ts +43 -0
  1121. package/types/System/Reflection/CallingConventions.d.ts +27 -0
  1122. package/types/System/Reflection/CommonJSManager.d.ts +137 -0
  1123. package/types/System/Reflection/ConstructorInfo.d.ts +43 -0
  1124. package/types/System/Reflection/CustomAttributeData.d.ts +52 -0
  1125. package/types/System/Reflection/CustomAttributeNamedArgument.d.ts +41 -0
  1126. package/types/System/Reflection/CustomAttributeTypedArgument.d.ts +32 -0
  1127. package/types/System/Reflection/EventAttributes.d.ts +26 -0
  1128. package/types/System/Reflection/EventInfo.d.ts +65 -0
  1129. package/types/System/Reflection/ExceptionHandlingClause.d.ts +33 -0
  1130. package/types/System/Reflection/ExceptionHandlingClauseOptions.d.ts +30 -0
  1131. package/types/System/Reflection/FieldAttributes.d.ts +41 -0
  1132. package/types/System/Reflection/FieldInfo.d.ts +106 -0
  1133. package/types/System/Reflection/GenericParameterAttributes.d.ts +34 -0
  1134. package/types/System/Reflection/ICustomAttributeProvider.d.ts +36 -0
  1135. package/types/System/Reflection/IReflect.d.ts +94 -0
  1136. package/types/System/Reflection/IReflectableType.d.ts +28 -0
  1137. package/types/System/Reflection/ImageFileMachine.d.ts +26 -0
  1138. package/types/System/Reflection/InterfaceMapping.d.ts +28 -0
  1139. package/types/System/Reflection/LocalVariableInfo.d.ts +28 -0
  1140. package/types/System/Reflection/ManifestResourceInfo.d.ts +35 -0
  1141. package/types/System/Reflection/MemberFilter.d.ts +31 -0
  1142. package/types/System/Reflection/MemberInfo.d.ts +43 -0
  1143. package/types/System/Reflection/MemberTypes.d.ts +31 -0
  1144. package/types/System/Reflection/MethodAttributes.d.ts +46 -0
  1145. package/types/System/Reflection/MethodBase.d.ts +115 -0
  1146. package/types/System/Reflection/MethodBody.d.ts +30 -0
  1147. package/types/System/Reflection/MethodImplAttributes.d.ts +42 -0
  1148. package/types/System/Reflection/MethodInfo.d.ts +53 -0
  1149. package/types/System/Reflection/ModuleResolveEventHandler.d.ts +36 -0
  1150. package/types/System/Reflection/ParameterAttributes.d.ts +33 -0
  1151. package/types/System/Reflection/ParameterInfo.d.ts +58 -0
  1152. package/types/System/Reflection/ParameterModifier.d.ts +30 -0
  1153. package/types/System/Reflection/PortableExecutableKinds.d.ts +31 -0
  1154. package/types/System/Reflection/ProcessorArchitecture.d.ts +31 -0
  1155. package/types/System/Reflection/PropertyAttributes.d.ts +30 -0
  1156. package/types/System/Reflection/PropertyInfo.d.ts +103 -0
  1157. package/types/System/Reflection/ResourceLocation.d.ts +25 -0
  1158. package/types/System/Reflection/StrongNameKeyPair.d.ts +35 -0
  1159. package/types/System/Reflection/TypeAttributes.d.ts +54 -0
  1160. package/types/System/Reflection/TypeFilter.d.ts +31 -0
  1161. package/types/System/Reflection/TypeInfo.d.ts +70 -0
  1162. package/types/System/ResolveEventArgs.d.ts +23 -0
  1163. package/types/System/Runtime/CompilerServices/CallSite.d.ts +52 -0
  1164. package/types/System/Runtime/CompilerServices/CallSiteBinder.d.ts +38 -0
  1165. package/types/System/Runtime/CompilerServices/ConfiguredTaskAwaitable.d.ts +96 -0
  1166. package/types/System/Runtime/CompilerServices/ConfiguredValueTaskAwaitable.d.ts +99 -0
  1167. package/types/System/Runtime/CompilerServices/DebugInfoGenerator.d.ts +35 -0
  1168. package/types/System/Runtime/CompilerServices/ICriticalNotifyCompletion.d.ts +37 -0
  1169. package/types/System/Runtime/CompilerServices/INotifyCompletion.d.ts +32 -0
  1170. package/types/System/Runtime/CompilerServices/ITuple.d.ts +28 -4
  1171. package/types/System/Runtime/CompilerServices/TaskAwaiter.d.ts +59 -0
  1172. package/types/System/Runtime/CompilerServices/ValueTaskAwaiter.d.ts +62 -0
  1173. package/types/System/Runtime/CompilerServices/YieldAwaitable.d.ts +52 -0
  1174. package/types/System/Runtime/ConstrainedExecution/CriticalFinalizerObject.d.ts +23 -0
  1175. package/types/System/Runtime/InteropServices/CharSet.d.ts +30 -0
  1176. package/types/System/Runtime/InteropServices/GCHandle.d.ts +41 -0
  1177. package/types/System/Runtime/InteropServices/GCHandleType.d.ts +30 -0
  1178. package/types/System/Runtime/InteropServices/LayoutKind.d.ts +29 -0
  1179. package/types/System/Runtime/InteropServices/SafeHandle.d.ts +42 -0
  1180. package/types/System/Runtime/InteropServices/StructLayoutAttribute.d.ts +38 -0
  1181. package/types/System/Runtime/Serialization/DeserializationToken.d.ts +27 -0
  1182. package/types/System/Runtime/Serialization/IDeserializationCallback.d.ts +28 -3
  1183. package/types/System/Runtime/Serialization/IFormatterConverter.d.ts +55 -0
  1184. package/types/System/Runtime/Serialization/IObjectReference.d.ts +28 -0
  1185. package/types/System/Runtime/Serialization/ISerializable.d.ts +27 -3
  1186. package/types/System/Runtime/Serialization/SerializationEntry.d.ts +25 -0
  1187. package/types/System/Runtime/Serialization/SerializationInfo.d.ts +90 -0
  1188. package/types/System/Runtime/Serialization/SerializationInfoEnumerator.d.ts +35 -0
  1189. package/types/System/Runtime/Serialization/StreamingContext.d.ts +33 -0
  1190. package/types/System/Runtime/Serialization/StreamingContextStates.d.ts +38 -0
  1191. package/types/System/RuntimeFieldHandle.d.ts +35 -0
  1192. package/types/System/RuntimeMethodHandle.d.ts +36 -0
  1193. package/types/System/RuntimeTypeHandle.d.ts +37 -0
  1194. package/types/System/SByte.d.ts +165 -0
  1195. package/types/System/Security/Cryptography/RandomNumberGenerator.d.ts +48 -0
  1196. package/types/System/Security/SecureString.d.ts +44 -0
  1197. package/types/System/Security/SecurityRuleSet.d.ts +25 -0
  1198. package/types/System/SequencePosition.d.ts +31 -0
  1199. package/types/System/Single.d.ts +272 -0
  1200. package/types/System/String.d.ts +495 -0
  1201. package/types/System/StringComparison.d.ts +28 -0
  1202. package/types/System/StringSplitOptions.d.ts +25 -0
  1203. package/types/System/SystemException.d.ts +30 -0
  1204. package/types/System/Text/CompositeFormat.d.ts +24 -0
  1205. package/types/System/Text/Decoder.d.ts +70 -0
  1206. package/types/System/Text/DecoderFallback.d.ts +26 -0
  1207. package/types/System/Text/DecoderFallbackBuffer.d.ts +36 -0
  1208. package/types/System/Text/Encoder.d.ts +58 -0
  1209. package/types/System/Text/EncoderFallback.d.ts +26 -0
  1210. package/types/System/Text/EncoderFallbackBuffer.d.ts +40 -0
  1211. package/types/System/Text/Encoding.d.ts +169 -0
  1212. package/types/System/Text/EncodingInfo.d.ts +37 -0
  1213. package/types/System/Text/EncodingProvider.d.ts +40 -0
  1214. package/types/System/Text/Encodings/Web/JavaScriptEncoder.d.ts +35 -0
  1215. package/types/System/Text/Encodings/Web/TextEncoder.d.ts +42 -0
  1216. package/types/System/Text/Encodings/Web/TextEncoderSettings.d.ts +50 -0
  1217. package/types/System/Text/Json/JsonElement.d.ts +152 -0
  1218. package/types/System/Text/Json/JsonEncodedText.d.ts +34 -0
  1219. package/types/System/Text/Json/JsonProperty.d.ts +29 -0
  1220. package/types/System/Text/Json/JsonValueKind.d.ts +34 -0
  1221. package/types/System/Text/Json/JsonWriterOptions.d.ts +29 -0
  1222. package/types/System/Text/Json/Utf8JsonWriter.d.ts +149 -0
  1223. package/types/System/Text/NormalizationForm.d.ts +26 -0
  1224. package/types/System/Text/Rune.d.ts +101 -0
  1225. package/types/System/Text/StringBuilder.d.ts +414 -0
  1226. package/types/System/Text/StringRuneEnumerator.d.ts +36 -0
  1227. package/types/System/Text/Unicode/UnicodeRange.d.ts +34 -0
  1228. package/types/System/Threading/CancellationToken.d.ts +48 -49
  1229. package/types/System/Threading/CancellationTokenRegistration.d.ts +25 -18
  1230. package/types/System/Threading/CancellationTokenSource.d.ts +48 -41
  1231. package/types/System/Threading/ITimer.d.ts +19 -3
  1232. package/types/System/Threading/LazyThreadSafetyMode.d.ts +28 -0
  1233. package/types/System/Threading/Tasks/ConfigureAwaitOptions.d.ts +33 -0
  1234. package/types/System/Threading/Tasks/Sources/IValueTaskSource.d.ts +91 -0
  1235. package/types/System/Threading/Tasks/Sources/ValueTaskSourceOnCompletedFlags.d.ts +33 -0
  1236. package/types/System/Threading/Tasks/Sources/ValueTaskSourceStatus.d.ts +33 -0
  1237. package/types/System/Threading/Tasks/Task.d.ts +513 -0
  1238. package/types/System/Threading/Tasks/TaskContinuationOptions.d.ts +44 -0
  1239. package/types/System/Threading/Tasks/TaskCreationOptions.d.ts +33 -0
  1240. package/types/System/Threading/Tasks/TaskFactory.d.ts +791 -0
  1241. package/types/System/Threading/Tasks/TaskScheduler.d.ts +28 -0
  1242. package/types/System/Threading/Tasks/TaskStatus.d.ts +34 -0
  1243. package/types/System/Threading/Tasks/UnobservedTaskExceptionEventArgs.d.ts +31 -0
  1244. package/types/System/Threading/Tasks/ValueTask.d.ts +97 -5
  1245. package/types/System/Threading/TimerCallback.d.ts +31 -0
  1246. package/types/System/Threading/WaitHandle.d.ts +84 -3
  1247. package/types/System/TimeOnly.d.ts +189 -0
  1248. package/types/System/TimeProvider.d.ts +36 -23
  1249. package/types/System/TimeSpan.d.ts +170 -3
  1250. package/types/System/TimeZoneInfo.d.ts +224 -0
  1251. package/types/System/TypeCode.d.ts +40 -0
  1252. package/types/System/UInt16.d.ts +156 -0
  1253. package/types/System/UInt32.d.ts +156 -0
  1254. package/types/System/UInt64.d.ts +156 -0
  1255. package/types/System/UIntPtr.d.ts +133 -0
  1256. package/types/System/Uri.d.ts +138 -0
  1257. package/types/System/UriComponents.d.ts +39 -0
  1258. package/types/System/UriCreationOptions.d.ts +18 -0
  1259. package/types/System/UriFormat.d.ts +25 -0
  1260. package/types/System/UriHostNameType.d.ts +27 -0
  1261. package/types/System/UriKind.d.ts +25 -0
  1262. package/types/System/UriPartial.d.ts +26 -0
  1263. package/types/System/V8SplitProxyHelpers.d.ts +537 -0
  1264. package/types/System/ValueTuple.d.ts +122 -0
  1265. package/types/System/ValueType.d.ts +19 -0
  1266. package/types/System/Version.d.ts +71 -0
  1267. package/types/System/WebSocket.d.ts +50 -0
  1268. package/types/System/Windows/Media/Matrix.d.ts +107 -72
  1269. package/types/System/Windows/Point.d.ts +38 -32
  1270. package/types/System/Windows/Rect.d.ts +102 -0
  1271. package/types/System/Windows/Size.d.ts +38 -0
  1272. package/types/System/Windows/Vector.d.ts +57 -42
  1273. package/types/System/Xml/ConformanceLevel.d.ts +25 -0
  1274. package/types/System/Xml/DtdProcessing.d.ts +25 -0
  1275. package/types/System/Xml/IXmlLineInfo.d.ts +29 -0
  1276. package/types/System/Xml/IXmlNamespaceResolver.d.ts +38 -0
  1277. package/types/System/Xml/Linq/LoadOptions.d.ts +30 -0
  1278. package/types/System/Xml/Linq/ReaderOptions.d.ts +28 -0
  1279. package/types/System/Xml/Linq/SaveOptions.d.ts +29 -0
  1280. package/types/System/Xml/Linq/XAttribute.d.ts +49 -0
  1281. package/types/System/Xml/Linq/XContainer.d.ts +68 -0
  1282. package/types/System/Xml/Linq/XDeclaration.d.ts +27 -0
  1283. package/types/System/Xml/Linq/XDocument.d.ts +127 -0
  1284. package/types/System/Xml/Linq/XDocumentType.d.ts +46 -0
  1285. package/types/System/Xml/Linq/XElement.d.ts +180 -0
  1286. package/types/System/Xml/Linq/XName.d.ts +32 -0
  1287. package/types/System/Xml/Linq/XNamespace.d.ts +31 -0
  1288. package/types/System/Xml/Linq/XNode.d.ts +103 -0
  1289. package/types/System/Xml/Linq/XNodeDocumentOrderComparer.d.ts +35 -0
  1290. package/types/System/Xml/Linq/XNodeEqualityComparer.d.ts +35 -0
  1291. package/types/System/Xml/Linq/XObject.d.ts +47 -0
  1292. package/types/System/Xml/Linq/XObjectChange.d.ts +30 -0
  1293. package/types/System/Xml/Linq/XObjectChangeEventArgs.d.ts +32 -0
  1294. package/types/System/Xml/Linq/XStreamingElement.d.ts +50 -0
  1295. package/types/System/Xml/NamespaceHandling.d.ts +24 -0
  1296. package/types/System/Xml/NewLineHandling.d.ts +25 -0
  1297. package/types/System/Xml/ReadState.d.ts +27 -0
  1298. package/types/System/Xml/Schema/IXmlSchemaInfo.d.ts +38 -0
  1299. package/types/System/Xml/Schema/ValidationEventArgs.d.ts +28 -0
  1300. package/types/System/Xml/Schema/ValidationEventHandler.d.ts +35 -0
  1301. package/types/System/Xml/Schema/XmlSchema.d.ts +113 -0
  1302. package/types/System/Xml/Schema/XmlSchemaAnnotated.d.ts +35 -0
  1303. package/types/System/Xml/Schema/XmlSchemaAnnotation.d.ts +35 -0
  1304. package/types/System/Xml/Schema/XmlSchemaAnyAttribute.d.ts +32 -0
  1305. package/types/System/Xml/Schema/XmlSchemaAttribute.d.ts +54 -0
  1306. package/types/System/Xml/Schema/XmlSchemaCompilationSettings.d.ts +28 -0
  1307. package/types/System/Xml/Schema/XmlSchemaComplexType.d.ts +59 -0
  1308. package/types/System/Xml/Schema/XmlSchemaContent.d.ts +17 -0
  1309. package/types/System/Xml/Schema/XmlSchemaContentModel.d.ts +25 -0
  1310. package/types/System/Xml/Schema/XmlSchemaContentProcessing.d.ts +34 -0
  1311. package/types/System/Xml/Schema/XmlSchemaContentType.d.ts +33 -0
  1312. package/types/System/Xml/Schema/XmlSchemaDatatype.d.ts +45 -0
  1313. package/types/System/Xml/Schema/XmlSchemaDatatypeVariety.d.ts +32 -0
  1314. package/types/System/Xml/Schema/XmlSchemaDerivationMethod.d.ts +38 -0
  1315. package/types/System/Xml/Schema/XmlSchemaElement.d.ts +69 -0
  1316. package/types/System/Xml/Schema/XmlSchemaException.d.ts +62 -0
  1317. package/types/System/Xml/Schema/XmlSchemaForm.d.ts +29 -0
  1318. package/types/System/Xml/Schema/XmlSchemaObject.d.ts +26 -0
  1319. package/types/System/Xml/Schema/XmlSchemaObjectCollection.d.ts +66 -0
  1320. package/types/System/Xml/Schema/XmlSchemaObjectEnumerator.d.ts +31 -0
  1321. package/types/System/Xml/Schema/XmlSchemaObjectTable.d.ts +36 -0
  1322. package/types/System/Xml/Schema/XmlSchemaParticle.d.ts +27 -0
  1323. package/types/System/Xml/Schema/XmlSchemaSet.d.ts +71 -0
  1324. package/types/System/Xml/Schema/XmlSchemaSimpleType.d.ts +28 -0
  1325. package/types/System/Xml/Schema/XmlSchemaSimpleTypeContent.d.ts +21 -0
  1326. package/types/System/Xml/Schema/XmlSchemaType.d.ts +72 -0
  1327. package/types/System/Xml/Schema/XmlSchemaUse.d.ts +30 -0
  1328. package/types/System/Xml/Schema/XmlSchemaValidationFlags.d.ts +35 -0
  1329. package/types/System/Xml/Schema/XmlSchemaValidity.d.ts +29 -0
  1330. package/types/System/Xml/Schema/XmlSeverityType.d.ts +28 -0
  1331. package/types/System/Xml/Schema/XmlTypeCode.d.ts +81 -0
  1332. package/types/System/Xml/Serialization/IXmlSerializable.d.ts +33 -0
  1333. package/types/System/Xml/Serialization/XmlSerializerNamespaces.d.ts +34 -0
  1334. package/types/System/Xml/ValidationType.d.ts +27 -0
  1335. package/types/System/Xml/WriteState.d.ts +29 -0
  1336. package/types/System/Xml/XPath/IXPathNavigable.d.ts +28 -0
  1337. package/types/System/Xml/XPath/XPathExpression.d.ts +48 -0
  1338. package/types/System/Xml/XPath/XPathItem.d.ts +36 -0
  1339. package/types/System/Xml/XPath/XPathNamespaceScope.d.ts +29 -0
  1340. package/types/System/Xml/XPath/XPathNavigator.d.ts +306 -0
  1341. package/types/System/Xml/XPath/XPathNodeIterator.d.ts +34 -0
  1342. package/types/System/Xml/XPath/XPathNodeType.d.ts +36 -0
  1343. package/types/System/Xml/XPath/XPathResultType.d.ts +33 -0
  1344. package/types/System/Xml/XPath/XmlCaseOrder.d.ts +29 -0
  1345. package/types/System/Xml/XPath/XmlDataType.d.ts +28 -0
  1346. package/types/System/Xml/XPath/XmlSortOrder.d.ts +28 -0
  1347. package/types/System/Xml/XmlAttribute.d.ts +87 -0
  1348. package/types/System/Xml/XmlAttributeCollection.d.ts +73 -0
  1349. package/types/System/Xml/XmlCDataSection.d.ts +47 -0
  1350. package/types/System/Xml/XmlCharacterData.d.ts +61 -0
  1351. package/types/System/Xml/XmlComment.d.ts +38 -0
  1352. package/types/System/Xml/XmlDeclaration.d.ts +53 -0
  1353. package/types/System/Xml/XmlDocument.d.ts +217 -0
  1354. package/types/System/Xml/XmlDocumentFragment.d.ts +52 -0
  1355. package/types/System/Xml/XmlDocumentType.d.ts +56 -0
  1356. package/types/System/Xml/XmlElement.d.ts +105 -0
  1357. package/types/System/Xml/XmlEntityReference.d.ts +52 -0
  1358. package/types/System/Xml/XmlImplementation.d.ts +31 -0
  1359. package/types/System/Xml/XmlLinkedNode.d.ts +27 -0
  1360. package/types/System/Xml/XmlNameTable.d.ts +36 -0
  1361. package/types/System/Xml/XmlNamedNodeMap.d.ts +33 -0
  1362. package/types/System/Xml/XmlNamespaceManager.d.ts +47 -0
  1363. package/types/System/Xml/XmlNamespaceScope.d.ts +25 -0
  1364. package/types/System/Xml/XmlNode.d.ts +94 -0
  1365. package/types/System/Xml/XmlNodeChangedAction.d.ts +28 -0
  1366. package/types/System/Xml/XmlNodeChangedEventArgs.d.ts +40 -0
  1367. package/types/System/Xml/XmlNodeChangedEventHandler.d.ts +36 -0
  1368. package/types/System/Xml/XmlNodeList.d.ts +33 -0
  1369. package/types/System/Xml/XmlNodeOrder.d.ts +26 -0
  1370. package/types/System/Xml/XmlNodeType.d.ts +40 -0
  1371. package/types/System/Xml/XmlOutputMethod.d.ts +26 -0
  1372. package/types/System/Xml/XmlParserContext.d.ts +72 -0
  1373. package/types/System/Xml/XmlProcessingInstruction.d.ts +54 -0
  1374. package/types/System/Xml/XmlQualifiedName.d.ts +36 -0
  1375. package/types/System/Xml/XmlReader.d.ts +264 -0
  1376. package/types/System/Xml/XmlReaderSettings.d.ts +60 -0
  1377. package/types/System/Xml/XmlResolver.d.ts +40 -0
  1378. package/types/System/Xml/XmlSignificantWhitespace.d.ts +52 -0
  1379. package/types/System/Xml/XmlSpace.d.ts +25 -0
  1380. package/types/System/Xml/XmlText.d.ts +56 -0
  1381. package/types/System/Xml/XmlTokenizedType.d.ts +35 -0
  1382. package/types/System/Xml/XmlWhitespace.d.ts +49 -0
  1383. package/types/System/Xml/XmlWriter.d.ts +228 -0
  1384. package/types/System/Xml/XmlWriterSettings.d.ts +49 -0
  1385. package/types/Vanara/PInvoke/POINT.d.ts +42 -0
  1386. package/types/Vanara/PInvoke/PRECT.d.ts +61 -0
  1387. package/types/Vanara/PInvoke/RECT.d.ts +58 -0
  1388. package/types/Vanara/PInvoke/SIZE.d.ts +38 -0
  1389. package/types/Vanara/PInvoke/User32.d.ts +242 -0
  1390. package/enums/country.d.ts +0 -20
  1391. package/objects/dispatcher.d.ts +0 -99
  1392. package/objects/file.d.ts +0 -116
  1393. package/objects/genshin.d.ts +0 -262
  1394. package/objects/globalMethod.d.ts +0 -161
  1395. package/objects/http.d.ts +0 -46
  1396. package/objects/keyMouseHook.d.ts +0 -70
  1397. package/objects/keyMouseScript.d.ts +0 -20
  1398. package/objects/log.d.ts +0 -38
  1399. package/objects/notification.d.ts +0 -20
  1400. package/objects/pathingScript.d.ts +0 -27
  1401. package/objects/settings.d.ts +0 -9
  1402. package/types/System/Exception.d.ts +0 -9
  1403. package/types/System/Tuple.d.ts +0 -184
  1404. package/types/System/Windows/Forms/Keys.d.ts +0 -200
@@ -1,9 +1,27 @@
1
+ import type {
2
+ ClrHostValue,
3
+ FamilyArgumentOmitted,
4
+ HostArray,
5
+ HostType,
6
+ Int32Host,
7
+ PublicDefaultConstructorTrait,
8
+ ReferenceTypeTrait,
9
+ StrongNumeric,
10
+ ValueTypeTrait
11
+ } from "../../../Microsoft/ClearScript/HostType";
12
+ import type { HostVariableOut } from "../../../Microsoft/ClearScript/HostVariable";
13
+ import type { VoidResult } from "../../../Microsoft/ClearScript/VoidResult";
14
+ import "../../IDisposable";
1
15
  import "../../Runtime/Serialization/IDeserializationCallback";
2
16
  import "../../Runtime/Serialization/ISerializable";
3
- import "../DictionaryEntry";
17
+ import "../../Runtime/Serialization/SerializationInfo";
18
+ import "../../Runtime/Serialization/StreamingContext";
19
+ import "../../ValueType";
4
20
  import "../ICollection";
5
21
  import "../IDictionary";
6
- import "./DictionaryEnumerator";
22
+ import "../IDictionaryEnumerator";
23
+ import "../IEnumerable";
24
+ import "../IEnumerator";
7
25
  import "./ICollection";
8
26
  import "./IDictionary";
9
27
  import "./IEnumerable";
@@ -13,202 +31,268 @@ import "./IReadOnlyCollection";
13
31
  import "./IReadOnlyDictionary";
14
32
  import "./KeyValuePair";
15
33
 
16
- declare global {
17
- namespace System.Collections.Generic {
18
- class Dictionary<TKey, TValue>
19
- implements
20
- System.Collections.Generic.IDictionary<TKey, TValue>,
21
- System.Collections.IDictionary,
22
- System.Collections.Generic.IReadOnlyDictionary<TKey, TValue>,
23
- System.Runtime.Serialization.ISerializable,
24
- System.Runtime.Serialization.IDeserializationCallback
25
- {
26
- comparer: System.Collections.Generic.IEqualityComparer<TKey>;
27
-
28
- count: number;
29
-
30
- keys: System.Collections.Generic.KeyCollection<TKey, TValue>;
31
-
32
- values: System.Collections.Generic.ValueCollection<TKey, TValue>;
33
-
34
- add(item: System.Collections.Generic.KeyValuePair<TKey, TValue>): void;
35
-
36
- add(key: TKey, value: TValue): void;
37
-
38
- contains(item: System.Collections.Generic.KeyValuePair<TKey, TValue>): boolean;
39
-
40
- remove(item: System.Collections.Generic.KeyValuePair<TKey, TValue>): boolean;
41
-
42
- remove(key: TKey): boolean;
43
-
44
- remove(key: TKey, value: TValue | null): boolean;
45
-
46
- clear(): void;
47
-
48
- containsKey(key: TKey): boolean;
49
-
50
- containsValue(value: TValue): boolean;
51
-
52
- getEnumerator(): System.Collections.Generic.DictionaryEnumerator<TKey, TValue>;
53
-
54
- onDeserialization(sender: any): void;
55
-
56
- tryGetValue(key: TKey, value: TValue | null): boolean;
57
-
58
- tryAdd(key: TKey, value: TValue): boolean;
59
-
60
- copyTo(
61
- array: System.Collections.Generic.KeyValuePair<TKey, TValue>[],
62
- arrayIndex: number
63
- ): void;
64
-
65
- ensureCapacity(capacity: number): number;
66
-
67
- trimExcess(): void;
68
-
69
- trimExcess(capacity: number): void;
70
-
71
- isSynchronized: boolean;
72
-
73
- syncRoot: any;
74
-
75
- isFixedSize: boolean;
76
-
77
- isReadOnly: boolean;
78
-
79
- constructor();
80
-
81
- constructor(capacity: number);
82
-
83
- constructor(comparer: System.Collections.Generic.IEqualityComparer<TKey>);
84
-
85
- constructor(capacity: number, comparer: System.Collections.Generic.IEqualityComparer<TKey>);
86
-
87
- constructor(dictionary: System.Collections.Generic.IDictionary<TKey, TValue>);
88
-
89
- constructor(
90
- dictionary: System.Collections.Generic.IDictionary<TKey, TValue>,
91
- comparer: System.Collections.Generic.IEqualityComparer<TKey>
92
- );
93
-
94
- constructor(
95
- collection: System.Collections.Generic.IEnumerable<
96
- System.Collections.Generic.KeyValuePair<TKey, TValue>
97
- >
98
- );
99
-
100
- constructor(
101
- collection: System.Collections.Generic.IEnumerable<
102
- System.Collections.Generic.KeyValuePair<TKey, TValue>
103
- >,
104
- comparer: System.Collections.Generic.IEqualityComparer<TKey>
105
- );
106
- }
107
-
108
- class DictionaryEnumerator<TKey, TValue>
109
- implements
110
- System.Collections.Generic.IEnumerator<
111
- System.Collections.Generic.KeyValuePair<TKey, TValue>
112
- >,
113
- System.Collections.IDictionaryEnumerator
114
- {
115
- moveNext(): boolean;
116
-
117
- current: System.Collections.Generic.KeyValuePair<TKey, TValue>;
118
-
119
- dispose(): void;
120
-
121
- reset(): void;
122
-
123
- entry: System.Collections.DictionaryEntry;
124
-
125
- key: any;
126
-
127
- value: any;
128
- }
129
-
130
- class KeyCollection<TKey, TValue>
131
- implements
132
- System.Collections.Generic.ICollection<TKey>,
133
- System.Collections.ICollection,
134
- System.Collections.Generic.IReadOnlyCollection<TKey>
135
- {
136
- getEnumerator(): System.Collections.Generic.KeyCollection.Enumerator<TKey>;
137
-
138
- copyTo(array: TKey[], index: number): void;
139
-
140
- count: number;
141
-
142
- isReadOnly: boolean;
143
-
144
- add(item: TKey): void;
145
-
146
- clear(): void;
147
-
148
- contains(key: TKey): boolean;
149
-
150
- remove(item: TKey): boolean;
151
-
152
- isSynchronized: boolean;
153
-
154
- syncRoot: any;
155
-
156
- constructor(dictionary: System.Collections.Generic.Dictionary<TKey, TValue>);
157
- }
158
-
159
- namespace KeyCollection {
160
- class Enumerator<TKey> implements System.Collections.Generic.IEnumerator<TKey> {
161
- dispose(): void;
34
+ declare const dictionaryArity2Brand: unique symbol;
35
+ export interface _DictionaryArity2<TKey, TValue>
36
+ extends
37
+ ClrHostValue,
38
+ System.Collections.Generic.IDictionaryInput<TKey, TValue>,
39
+ System.Collections.Generic.ICollectionInput<
40
+ System.Collections.Generic.KeyValuePair<TKey, TValue>
41
+ >,
42
+ System.Collections.Generic.IEnumerableInput<
43
+ System.Collections.Generic.KeyValuePair<TKey, TValue>
44
+ >,
45
+ System.Collections.IEnumerableInput,
46
+ System.Collections.IDictionaryInput,
47
+ System.Collections.ICollectionInput,
48
+ System.Collections.Generic.IReadOnlyDictionaryInput<TKey, TValue>,
49
+ System.Collections.Generic.IReadOnlyCollectionInput<
50
+ System.Collections.Generic.KeyValuePair<TKey, TValue>
51
+ >,
52
+ System.Runtime.Serialization.ISerializableInput,
53
+ System.Runtime.Serialization.IDeserializationCallbackInput {
54
+ readonly [dictionaryArity2Brand]: true;
55
+ add(key: TKey, value: TValue | null): VoidResult;
56
+ clear(): VoidResult;
57
+ containsKey(key: TKey): boolean;
58
+ containsValue(value: TValue | null): boolean;
59
+ ensureCapacity(capacity: number | StrongNumeric<Int32Host>): number;
60
+ getEnumerator(): _DictionaryArity2_Enumerator<TKey, TValue>;
61
+ getObjectData(
62
+ info: System.Runtime.Serialization.SerializationInfo,
63
+ context: System.Runtime.Serialization.StreamingContext
64
+ ): VoidResult;
65
+ item: { (key: TKey): TValue; get(key: TKey): TValue; set(key: TKey, value: TValue): TValue };
66
+ onDeserialization(sender: unknown | null): VoidResult;
67
+ readonly comparer: System.Collections.Generic.IEqualityComparer<TKey>;
68
+ readonly count: number;
69
+ readonly keys: _DictionaryArity2_KeyCollection<TKey, TValue>;
70
+ readonly values: _DictionaryArity2_ValueCollection<TKey, TValue>;
71
+ remove(key: TKey): boolean;
72
+ remove(key: TKey, value: HostVariableOut<TValue>): boolean;
73
+ trimExcess(): VoidResult;
74
+ trimExcess(capacity: number | StrongNumeric<Int32Host>): VoidResult;
75
+ tryAdd(key: TKey, value: TValue | null): boolean;
76
+ tryGetValue(key: TKey, value: HostVariableOut<TValue>): boolean;
77
+ }
162
78
 
163
- moveNext(): boolean;
79
+ declare const dictionaryArity2_EnumeratorBrand: unique symbol;
80
+ export interface _DictionaryArity2_Enumerator<TKey, TValue>
81
+ extends
82
+ ClrHostValue,
83
+ System.Collections.Generic.IEnumeratorInput<
84
+ System.Collections.Generic.KeyValuePair<TKey, TValue>
85
+ >,
86
+ System.IDisposableInput,
87
+ System.Collections.IEnumeratorInput,
88
+ System.Collections.IDictionaryEnumeratorInput {
89
+ readonly [dictionaryArity2_EnumeratorBrand]: true;
90
+ moveNext(): boolean;
91
+ readonly current: System.Collections.Generic.KeyValuePair<TKey, TValue>;
92
+ dispose(): VoidResult;
93
+ }
164
94
 
165
- current: TKey;
95
+ export interface _DictionaryArity2_EnumeratorHostType<TKey, TValue> extends HostType<
96
+ _DictionaryArity2_Enumerator<TKey, TValue>,
97
+ ValueTypeTrait
98
+ > {}
166
99
 
167
- reset(): void;
168
- }
169
- }
100
+ declare global {
101
+ namespace System.Collections.Generic.Dictionary {
102
+ type Enumerator<TKey, TValue> = import("./Dictionary")._DictionaryArity2_Enumerator<
103
+ TKey,
104
+ TValue
105
+ >;
106
+ }
107
+ }
170
108
 
171
- class ValueCollection<TKey, TValue>
172
- implements
173
- System.Collections.Generic.ICollection<TValue>,
174
- System.Collections.ICollection,
175
- System.Collections.Generic.IReadOnlyCollection<TValue>
176
- {
177
- getEnumerator(): System.Collections.Generic.ValueCollection.Enumerator<TValue>;
109
+ declare const dictionaryArity2_KeyCollectionBrand: unique symbol;
110
+ export interface _DictionaryArity2_KeyCollection<TKey, TValue>
111
+ extends
112
+ ClrHostValue,
113
+ System.Collections.Generic.ICollectionInput<TKey>,
114
+ System.Collections.Generic.IEnumerableInput<TKey>,
115
+ System.Collections.IEnumerableInput,
116
+ System.Collections.ICollectionInput,
117
+ System.Collections.Generic.IReadOnlyCollectionInput<TKey> {
118
+ readonly [dictionaryArity2_KeyCollectionBrand]: true;
119
+ contains(item: TKey): boolean;
120
+ copyTo(array: HostArray<TKey>, index: number | StrongNumeric<Int32Host>): VoidResult;
121
+ getEnumerator(): _DictionaryArity2_KeyCollection_Enumerator<TKey, TValue>;
122
+ readonly count: number;
123
+ }
178
124
 
179
- copyTo(array: TValue[], index: number): void;
125
+ declare const dictionaryArity2_KeyCollection_EnumeratorBrand: unique symbol;
126
+ export interface _DictionaryArity2_KeyCollection_Enumerator<TKey, TValue>
127
+ extends
128
+ ClrHostValue,
129
+ System.Collections.Generic.IEnumeratorInput<TKey>,
130
+ System.IDisposableInput,
131
+ System.Collections.IEnumeratorInput {
132
+ readonly [dictionaryArity2_KeyCollection_EnumeratorBrand]: true;
133
+ moveNext(): boolean;
134
+ readonly current: TKey;
135
+ dispose(): VoidResult;
136
+ }
180
137
 
181
- count: number;
138
+ export interface _DictionaryArity2_KeyCollection_EnumeratorHostType<TKey, TValue> extends HostType<
139
+ _DictionaryArity2_KeyCollection_Enumerator<TKey, TValue>,
140
+ ValueTypeTrait
141
+ > {}
182
142
 
183
- isReadOnly: boolean;
143
+ declare global {
144
+ namespace System.Collections.Generic.Dictionary.KeyCollection {
145
+ type Enumerator<TKey, TValue> =
146
+ import("./Dictionary")._DictionaryArity2_KeyCollection_Enumerator<TKey, TValue>;
147
+ }
148
+ }
184
149
 
185
- add(item: TValue): void;
150
+ export interface _DictionaryArity2_KeyCollectionHostType<TKey, TValue> extends HostType<
151
+ _DictionaryArity2_KeyCollection<TKey, TValue>,
152
+ ReferenceTypeTrait
153
+ > {
154
+ new (
155
+ dictionary: System.Collections.Generic.Dictionary<TKey, TValue>
156
+ ): _DictionaryArity2_KeyCollection<TKey, TValue>;
157
+ readonly Enumerator: _DictionaryArity2_KeyCollection_EnumeratorHostType<any, any>;
158
+ }
186
159
 
187
- clear(): void;
160
+ declare global {
161
+ namespace System.Collections.Generic.Dictionary {
162
+ type KeyCollection<TKey, TValue> = import("./Dictionary")._DictionaryArity2_KeyCollection<
163
+ TKey,
164
+ TValue
165
+ >;
166
+ }
167
+ }
188
168
 
189
- contains(key: TValue): boolean;
169
+ declare const dictionaryArity2_ValueCollectionBrand: unique symbol;
170
+ export interface _DictionaryArity2_ValueCollection<TKey, TValue>
171
+ extends
172
+ ClrHostValue,
173
+ System.Collections.Generic.ICollectionInput<TValue>,
174
+ System.Collections.Generic.IEnumerableInput<TValue>,
175
+ System.Collections.IEnumerableInput,
176
+ System.Collections.ICollectionInput,
177
+ System.Collections.Generic.IReadOnlyCollectionInput<TValue> {
178
+ readonly [dictionaryArity2_ValueCollectionBrand]: true;
179
+ copyTo(array: HostArray<TValue>, index: number | StrongNumeric<Int32Host>): VoidResult;
180
+ getEnumerator(): _DictionaryArity2_ValueCollection_Enumerator<TKey, TValue>;
181
+ readonly count: number;
182
+ }
190
183
 
191
- remove(item: TValue): boolean;
184
+ declare const dictionaryArity2_ValueCollection_EnumeratorBrand: unique symbol;
185
+ export interface _DictionaryArity2_ValueCollection_Enumerator<TKey, TValue>
186
+ extends
187
+ ClrHostValue,
188
+ System.Collections.Generic.IEnumeratorInput<TValue>,
189
+ System.IDisposableInput,
190
+ System.Collections.IEnumeratorInput {
191
+ readonly [dictionaryArity2_ValueCollection_EnumeratorBrand]: true;
192
+ moveNext(): boolean;
193
+ readonly current: TValue;
194
+ dispose(): VoidResult;
195
+ }
192
196
 
193
- isSynchronized: boolean;
197
+ export interface _DictionaryArity2_ValueCollection_EnumeratorHostType<
198
+ TKey,
199
+ TValue
200
+ > extends HostType<_DictionaryArity2_ValueCollection_Enumerator<TKey, TValue>, ValueTypeTrait> {}
194
201
 
195
- syncRoot: any;
202
+ declare global {
203
+ namespace System.Collections.Generic.Dictionary.ValueCollection {
204
+ type Enumerator<TKey, TValue> =
205
+ import("./Dictionary")._DictionaryArity2_ValueCollection_Enumerator<TKey, TValue>;
206
+ }
207
+ }
196
208
 
197
- constructor(dictionary: System.Collections.Generic.Dictionary<TKey, TValue>);
198
- }
209
+ export interface _DictionaryArity2_ValueCollectionHostType<TKey, TValue> extends HostType<
210
+ _DictionaryArity2_ValueCollection<TKey, TValue>,
211
+ ReferenceTypeTrait
212
+ > {
213
+ new (
214
+ dictionary: System.Collections.Generic.Dictionary<TKey, TValue>
215
+ ): _DictionaryArity2_ValueCollection<TKey, TValue>;
216
+ readonly Enumerator: _DictionaryArity2_ValueCollection_EnumeratorHostType<any, any>;
217
+ }
199
218
 
200
- namespace ValueCollection {
201
- class Enumerator<TValue> implements System.Collections.Generic.IEnumerator<TValue> {
202
- dispose(): void;
219
+ declare global {
220
+ namespace System.Collections.Generic.Dictionary {
221
+ type ValueCollection<TKey, TValue> = import("./Dictionary")._DictionaryArity2_ValueCollection<
222
+ TKey,
223
+ TValue
224
+ >;
225
+ }
226
+ }
203
227
 
204
- moveNext(): boolean;
228
+ export interface _DictionaryArity2HostType<TKey, TValue> extends HostType<
229
+ _DictionaryArity2<TKey, TValue>,
230
+ ReferenceTypeTrait & PublicDefaultConstructorTrait
231
+ > {
232
+ new (): _DictionaryArity2<TKey, TValue>;
233
+ new (capacity: number | StrongNumeric<Int32Host>): _DictionaryArity2<TKey, TValue>;
234
+ new (
235
+ comparer: System.Collections.Generic.IEqualityComparer<TKey> | null
236
+ ): _DictionaryArity2<TKey, TValue>;
237
+ new (
238
+ capacity: number | StrongNumeric<Int32Host>,
239
+ comparer: System.Collections.Generic.IEqualityComparer<TKey> | null
240
+ ): _DictionaryArity2<TKey, TValue>;
241
+ new (
242
+ dictionary: System.Collections.Generic.IDictionary<TKey, TValue>
243
+ ): _DictionaryArity2<TKey, TValue>;
244
+ new (
245
+ dictionary: System.Collections.Generic.IDictionary<TKey, TValue>,
246
+ comparer: System.Collections.Generic.IEqualityComparer<TKey> | null
247
+ ): _DictionaryArity2<TKey, TValue>;
248
+ new (
249
+ collection: System.Collections.Generic.IEnumerable<
250
+ System.Collections.Generic.KeyValuePair<TKey, TValue>
251
+ >
252
+ ): _DictionaryArity2<TKey, TValue>;
253
+ new (
254
+ collection: System.Collections.Generic.IEnumerable<
255
+ System.Collections.Generic.KeyValuePair<TKey, TValue>
256
+ >,
257
+ comparer: System.Collections.Generic.IEqualityComparer<TKey> | null
258
+ ): _DictionaryArity2<TKey, TValue>;
259
+ readonly Enumerator: _DictionaryArity2_EnumeratorHostType<any, any>;
260
+ readonly KeyCollection: _DictionaryArity2_KeyCollectionHostType<any, any>;
261
+ readonly ValueCollection: _DictionaryArity2_ValueCollectionHostType<any, any>;
262
+ }
205
263
 
206
- current: TValue;
264
+ export type DictionaryFamily<
265
+ T1 = FamilyArgumentOmitted,
266
+ T2 = FamilyArgumentOmitted
267
+ > = _DictionaryArity2<T1, T2>;
207
268
 
208
- reset(): void;
209
- }
210
- }
269
+ declare global {
270
+ namespace System.Collections.Generic {
271
+ type Dictionary<
272
+ T1 = Microsoft.ClearScript.FamilyArgumentOmitted,
273
+ T2 = Microsoft.ClearScript.FamilyArgumentOmitted
274
+ > = import("./Dictionary").DictionaryFamily<T1, T2>;
211
275
  }
212
276
  }
213
277
 
278
+ export type DictionaryHostType<T1, T2> = _DictionaryArity2HostType<T1, T2>;
279
+
280
+ declare const dictionary_EnumeratorBrand: unique symbol;
281
+ export interface Dictionary_Enumerator<TKey, TValue>
282
+ extends
283
+ ClrHostValue,
284
+ System.Collections.Generic.IEnumeratorInput<TKey>,
285
+ System.IDisposableInput,
286
+ System.Collections.IEnumeratorInput {
287
+ readonly [dictionary_EnumeratorBrand]: true;
288
+ moveNext(): boolean;
289
+ readonly current: TKey;
290
+ dispose(): VoidResult;
291
+ }
292
+
293
+ export interface Dictionary_EnumeratorHostType<TKey, TValue> extends HostType<
294
+ Dictionary_Enumerator<TKey, TValue>,
295
+ ValueTypeTrait
296
+ > {}
297
+
214
298
  export {};
@@ -0,0 +1,134 @@
1
+ import type {
2
+ ClrHostValue,
3
+ FamilyArgumentOmitted,
4
+ HostArray,
5
+ HostType,
6
+ Int32Host,
7
+ PublicDefaultConstructorTrait,
8
+ ReferenceTypeTrait,
9
+ StrongNumeric,
10
+ ValueTypeTrait
11
+ } from "../../../Microsoft/ClearScript/HostType";
12
+ import type { HostVariableOut } from "../../../Microsoft/ClearScript/HostVariable";
13
+ import type { VoidResult } from "../../../Microsoft/ClearScript/VoidResult";
14
+ import "../../IDisposable";
15
+ import "../../Predicate";
16
+ import "../../Runtime/Serialization/IDeserializationCallback";
17
+ import "../../Runtime/Serialization/ISerializable";
18
+ import "../../Runtime/Serialization/SerializationInfo";
19
+ import "../../Runtime/Serialization/StreamingContext";
20
+ import "../../ValueType";
21
+ import "../IEnumerable";
22
+ import "../IEnumerator";
23
+ import "./ICollection";
24
+ import "./IEnumerable";
25
+ import "./IEnumerator";
26
+ import "./IEqualityComparer";
27
+ import "./IReadOnlyCollection";
28
+ import "./IReadOnlySet";
29
+ import "./ISet";
30
+
31
+ declare const hashSetArity1Brand: unique symbol;
32
+ export interface _HashSetArity1<T>
33
+ extends
34
+ ClrHostValue,
35
+ System.Collections.Generic.ICollectionInput<T>,
36
+ System.Collections.Generic.IEnumerableInput<T>,
37
+ System.Collections.IEnumerableInput,
38
+ System.Collections.Generic.ISetInput<T>,
39
+ System.Collections.Generic.IReadOnlyCollectionInput<T>,
40
+ System.Collections.Generic.IReadOnlySetInput<T>,
41
+ System.Runtime.Serialization.ISerializableInput,
42
+ System.Runtime.Serialization.IDeserializationCallbackInput {
43
+ readonly [hashSetArity1Brand]: true;
44
+ add(item: T | null): boolean;
45
+ clear(): VoidResult;
46
+ contains(item: T | null): boolean;
47
+ copyTo(array: HostArray<T>): VoidResult;
48
+ copyTo(array: HostArray<T>, arrayIndex: number | StrongNumeric<Int32Host>): VoidResult;
49
+ copyTo(
50
+ array: HostArray<T>,
51
+ arrayIndex: number | StrongNumeric<Int32Host>,
52
+ count: number | StrongNumeric<Int32Host>
53
+ ): VoidResult;
54
+ ensureCapacity(capacity: number | StrongNumeric<Int32Host>): number;
55
+ exceptWith(other: System.Collections.Generic.IEnumerable<T>): VoidResult;
56
+ getEnumerator(): _HashSetArity1_Enumerator<T>;
57
+ getObjectData(
58
+ info: System.Runtime.Serialization.SerializationInfo,
59
+ context: System.Runtime.Serialization.StreamingContext
60
+ ): VoidResult;
61
+ intersectWith(other: System.Collections.Generic.IEnumerable<T>): VoidResult;
62
+ isProperSubsetOf(other: System.Collections.Generic.IEnumerable<T>): boolean;
63
+ isProperSupersetOf(other: System.Collections.Generic.IEnumerable<T>): boolean;
64
+ isSubsetOf(other: System.Collections.Generic.IEnumerable<T>): boolean;
65
+ isSupersetOf(other: System.Collections.Generic.IEnumerable<T>): boolean;
66
+ onDeserialization(sender: unknown | null): VoidResult;
67
+ overlaps(other: System.Collections.Generic.IEnumerable<T>): boolean;
68
+ readonly comparer: System.Collections.Generic.IEqualityComparer<T>;
69
+ readonly count: number;
70
+ remove(item: T | null): boolean;
71
+ removeWhere(match: System.Predicate<T>): number;
72
+ setEquals(other: System.Collections.Generic.IEnumerable<T>): boolean;
73
+ symmetricExceptWith(other: System.Collections.Generic.IEnumerable<T>): VoidResult;
74
+ trimExcess(): VoidResult;
75
+ tryGetValue(equalValue: T | null, actualValue: HostVariableOut<T>): boolean;
76
+ unionWith(other: System.Collections.Generic.IEnumerable<T>): VoidResult;
77
+ }
78
+
79
+ declare const hashSetArity1_EnumeratorBrand: unique symbol;
80
+ export interface _HashSetArity1_Enumerator<T>
81
+ extends
82
+ ClrHostValue,
83
+ System.Collections.Generic.IEnumeratorInput<T>,
84
+ System.IDisposableInput,
85
+ System.Collections.IEnumeratorInput {
86
+ readonly [hashSetArity1_EnumeratorBrand]: true;
87
+ moveNext(): boolean;
88
+ readonly current: T;
89
+ dispose(): VoidResult;
90
+ }
91
+
92
+ export interface _HashSetArity1_EnumeratorHostType<T> extends HostType<
93
+ _HashSetArity1_Enumerator<T>,
94
+ ValueTypeTrait
95
+ > {}
96
+
97
+ declare global {
98
+ namespace System.Collections.Generic.HashSet {
99
+ type Enumerator<T> = import("./HashSet")._HashSetArity1_Enumerator<T>;
100
+ }
101
+ }
102
+
103
+ export interface _HashSetArity1HostType<T> extends HostType<
104
+ _HashSetArity1<T>,
105
+ ReferenceTypeTrait & PublicDefaultConstructorTrait
106
+ > {
107
+ new (): _HashSetArity1<T>;
108
+ new (comparer: System.Collections.Generic.IEqualityComparer<T> | null): _HashSetArity1<T>;
109
+ new (capacity: number | StrongNumeric<Int32Host>): _HashSetArity1<T>;
110
+ new (collection: System.Collections.Generic.IEnumerable<T>): _HashSetArity1<T>;
111
+ new (
112
+ collection: System.Collections.Generic.IEnumerable<T>,
113
+ comparer: System.Collections.Generic.IEqualityComparer<T> | null
114
+ ): _HashSetArity1<T>;
115
+ new (
116
+ capacity: number | StrongNumeric<Int32Host>,
117
+ comparer: System.Collections.Generic.IEqualityComparer<T> | null
118
+ ): _HashSetArity1<T>;
119
+ createSetComparer(): System.Collections.Generic.IEqualityComparer<System.Collections.Generic.HashSet>;
120
+ readonly Enumerator: _HashSetArity1_EnumeratorHostType<any>;
121
+ }
122
+
123
+ export type HashSetFamily<T1 = FamilyArgumentOmitted> = _HashSetArity1<T1>;
124
+
125
+ declare global {
126
+ namespace System.Collections.Generic {
127
+ type HashSet<T1 = Microsoft.ClearScript.FamilyArgumentOmitted> =
128
+ import("./HashSet").HashSetFamily<T1>;
129
+ }
130
+ }
131
+
132
+ export type HashSetHostType<T1> = _HashSetArity1HostType<T1>;
133
+
134
+ export {};
@@ -1,23 +1,56 @@
1
+ import type {
2
+ FamilyArgumentOmitted,
3
+ HostArray,
4
+ HostType,
5
+ Int32Host,
6
+ InterfaceTypeTrait,
7
+ StrongNumeric
8
+ } from "../../../Microsoft/ClearScript/HostType";
9
+ import type { VoidResult } from "../../../Microsoft/ClearScript/VoidResult";
10
+ import "../IEnumerable";
1
11
  import "./IEnumerable";
2
12
 
3
- declare global {
4
- namespace System.Collections.Generic {
5
- interface ICollection<T> extends System.Collections.Generic.IEnumerable<T> {
6
- count: number;
13
+ declare const iCollectionArity1InputBrand: unique symbol;
14
+ export interface _ICollectionArity1Input<T> {
15
+ readonly [iCollectionArity1InputBrand]: true;
16
+ }
7
17
 
8
- isReadOnly: boolean;
18
+ export interface _ICollectionArity1<T>
19
+ extends
20
+ Microsoft.ClearScript.ClrInterfaceView<_ICollectionArity1Input<T>>,
21
+ _ICollectionArity1Input<T> {
22
+ add(item: T | null): VoidResult;
23
+ clear(): VoidResult;
24
+ contains(item: T | null): boolean;
25
+ copyTo(array: HostArray<T>, arrayIndex: number | StrongNumeric<Int32Host>): VoidResult;
26
+ readonly count: number;
27
+ readonly isReadOnly: boolean;
28
+ remove(item: T | null): boolean;
29
+ }
9
30
 
10
- add(item: T): void;
31
+ export interface _ICollectionArity1HostType<T> extends HostType<
32
+ _ICollectionArity1<T>,
33
+ InterfaceTypeTrait
34
+ > {}
11
35
 
12
- clear(): void;
36
+ export type ICollectionFamily<T1 = FamilyArgumentOmitted> = _ICollectionArity1<T1>;
13
37
 
14
- contains(item: T): boolean;
38
+ declare global {
39
+ namespace System.Collections.Generic {
40
+ type ICollection<T1 = Microsoft.ClearScript.FamilyArgumentOmitted> =
41
+ import("./ICollection").ICollectionFamily<T1>;
42
+ }
43
+ }
15
44
 
16
- copyTo(array: T[], arrayIndex: number): void;
45
+ export type ICollectionInputFamily<T1 = FamilyArgumentOmitted> = _ICollectionArity1Input<T1>;
46
+ export type ICollectionInput<T1> = _ICollectionArity1Input<T1>;
17
47
 
18
- remove(item: T): boolean;
19
- }
48
+ declare global {
49
+ namespace System.Collections.Generic {
50
+ type ICollectionInput<T1> = import("./ICollection").ICollectionInput<T1>;
20
51
  }
21
52
  }
22
53
 
54
+ export type ICollectionHostType<T1> = _ICollectionArity1HostType<T1>;
55
+
23
56
  export {};