@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.
- package/LICENSE +20 -20
- package/bindings/AutoBossParam.d.ts +12 -0
- package/bindings/AutoDomainParam.d.ts +12 -0
- package/bindings/AutoFightParam.d.ts +12 -0
- package/bindings/AutoLeyLineOutcropParam.d.ts +13 -0
- package/bindings/AutoSkipConfig.d.ts +12 -0
- package/bindings/AutoStygianOnslaughtParam.d.ts +13 -0
- package/bindings/Avatar.d.ts +12 -0
- package/bindings/BvImage.d.ts +12 -0
- package/bindings/BvLocator.d.ts +12 -0
- package/bindings/BvPage.d.ts +12 -0
- package/bindings/CancellationToken.d.ts +12 -0
- package/bindings/CancellationTokenSource.d.ts +12 -0
- package/bindings/CombatScenes.d.ts +12 -0
- package/bindings/CountInventoryItemParam.d.ts +12 -0
- package/bindings/DesktopRegion.d.ts +12 -0
- package/bindings/GameCaptureRegion.d.ts +12 -0
- package/bindings/GridScreenName.d.ts +12 -0
- package/bindings/ImageRegion.d.ts +12 -0
- package/bindings/ItemIconRecognitionMode.d.ts +12 -0
- package/bindings/KeyMouseHook.d.ts +12 -0
- package/bindings/Mat.d.ts +12 -0
- package/bindings/OpenCvSharp.d.ts +1035 -0
- package/bindings/Point2f.d.ts +12 -0
- package/bindings/PostMessage.d.ts +12 -0
- package/bindings/RealtimeTimer.d.ts +12 -0
- package/bindings/RecognitionObject.d.ts +12 -0
- package/bindings/Region.d.ts +12 -0
- package/bindings/ServerTime.d.ts +12 -0
- package/bindings/SoloTask.d.ts +12 -0
- package/bindings/Task.d.ts +12 -0
- package/bindings/captureGameRegion.d.ts +17 -0
- package/bindings/click.d.ts +21 -0
- package/bindings/dispatcher.d.ts +11 -0
- package/bindings/file.d.ts +11 -0
- package/bindings/genshin.d.ts +11 -0
- package/bindings/getAvatars.d.ts +16 -0
- package/bindings/getGameMetrics.d.ts +16 -0
- package/bindings/getVersion.d.ts +16 -0
- package/bindings/host.d.ts +30 -0
- package/bindings/htmlMask.d.ts +11 -0
- package/bindings/http.d.ts +11 -0
- package/bindings/inputText.d.ts +17 -0
- package/bindings/keyDown.d.ts +18 -0
- package/bindings/keyMouseScript.d.ts +11 -0
- package/bindings/keyPress.d.ts +18 -0
- package/bindings/keyUp.d.ts +18 -0
- package/bindings/leftButtonClick.d.ts +17 -0
- package/bindings/leftButtonDown.d.ts +17 -0
- package/bindings/leftButtonUp.d.ts +17 -0
- package/bindings/log.d.ts +11 -0
- package/bindings/middleButtonClick.d.ts +17 -0
- package/bindings/middleButtonDown.d.ts +17 -0
- package/bindings/middleButtonUp.d.ts +17 -0
- package/bindings/moveMouseBy.d.ts +21 -0
- package/bindings/moveMouseTo.d.ts +21 -0
- package/bindings/notification.d.ts +11 -0
- package/bindings/pathingScript.d.ts +11 -0
- package/bindings/rightButtonClick.d.ts +17 -0
- package/bindings/rightButtonDown.d.ts +17 -0
- package/bindings/rightButtonUp.d.ts +17 -0
- package/bindings/setGameMetrics.d.ts +38 -0
- package/bindings/settings.d.ts +8 -0
- package/bindings/sleep.d.ts +20 -0
- package/bindings/strategyFile.d.ts +11 -0
- package/bindings/verticalScroll.d.ts +21 -0
- package/index.d.ts +104 -62
- package/package.json +15 -4
- package/types/BetterGI/ScriptSettings.d.ts +22 -0
- package/types/BetterGenshinImpact/Core/BgiVision/BvImage.d.ts +54 -0
- package/types/BetterGenshinImpact/Core/BgiVision/BvLocator.d.ts +202 -0
- package/types/BetterGenshinImpact/Core/BgiVision/BvPage.d.ts +145 -0
- package/types/BetterGenshinImpact/Core/Recognition/ONNX/BgiYoloPredictor.d.ts +54 -0
- package/types/BetterGenshinImpact/Core/Recognition/OcrEngineTypes.d.ts +39 -10
- package/types/BetterGenshinImpact/Core/Recognition/RecognitionObject.d.ts +290 -190
- package/types/BetterGenshinImpact/Core/Recognition/RecognitionTypes.d.ts +59 -21
- package/types/BetterGenshinImpact/Core/Recognition/SearchOptions.d.ts +100 -0
- package/types/BetterGenshinImpact/Core/Script/Dependence/AutoPathingScript.d.ts +91 -0
- package/types/BetterGenshinImpact/Core/Script/Dependence/CustomHostFunctions.d.ts +48 -0
- package/types/BetterGenshinImpact/Core/Script/Dependence/Dispatcher.d.ts +203 -0
- package/types/BetterGenshinImpact/Core/Script/Dependence/Genshin.d.ts +438 -0
- package/types/BetterGenshinImpact/Core/Script/Dependence/HtmlMask.d.ts +203 -0
- package/types/BetterGenshinImpact/Core/Script/Dependence/Http.d.ts +102 -0
- package/types/BetterGenshinImpact/Core/Script/Dependence/KeyMouseHook.d.ts +106 -68
- package/types/BetterGenshinImpact/Core/Script/Dependence/KeyMouseScript.d.ts +45 -0
- package/types/BetterGenshinImpact/Core/Script/Dependence/LimitedFile.d.ts +180 -0
- package/types/BetterGenshinImpact/Core/Script/Dependence/Log.d.ts +72 -0
- package/types/BetterGenshinImpact/Core/Script/Dependence/Model/RealtimeTimer.d.ts +55 -28
- package/types/BetterGenshinImpact/Core/Script/Dependence/Model/SoloTask.d.ts +51 -14
- package/types/BetterGenshinImpact/Core/Script/Dependence/Notification.d.ts +49 -0
- package/types/BetterGenshinImpact/Core/Script/Dependence/ServerTime.d.ts +25 -5
- package/types/BetterGenshinImpact/Core/Script/Dependence/Simulator/PostMessage.d.ts +57 -12
- package/types/BetterGenshinImpact/Core/Script/Dependence/StrategyFile.d.ts +66 -0
- package/types/BetterGenshinImpact/GameTask/AutoBoss/AutoBossConfig.d.ts +102 -0
- package/types/BetterGenshinImpact/GameTask/AutoBoss/AutoBossParam.d.ts +135 -0
- package/types/BetterGenshinImpact/GameTask/AutoBoss/AutoBossTask.d.ts +55 -0
- package/types/BetterGenshinImpact/GameTask/AutoDomain/AutoDomainParam.d.ts +160 -66
- package/types/BetterGenshinImpact/GameTask/AutoDomain/AutoDomainTask.d.ts +89 -30
- package/types/BetterGenshinImpact/GameTask/AutoFight/Assets/AutoFightAssets.d.ts +144 -0
- package/types/BetterGenshinImpact/GameTask/AutoFight/AutoFightConfig.d.ts +266 -0
- package/types/BetterGenshinImpact/GameTask/AutoFight/AutoFightParam.d.ts +252 -105
- package/types/BetterGenshinImpact/GameTask/AutoFight/AutoFightTask.d.ts +69 -31
- package/types/BetterGenshinImpact/GameTask/AutoFight/Config/CombatAvatar.d.ts +67 -25
- package/types/BetterGenshinImpact/GameTask/AutoFight/Model/Avatar.d.ts +373 -161
- package/types/BetterGenshinImpact/GameTask/AutoFight/Model/AvatarActiveCheckContext.d.ts +39 -5
- package/types/BetterGenshinImpact/GameTask/AutoFight/Model/CombatScenes.d.ts +237 -58
- package/types/BetterGenshinImpact/GameTask/AutoFight/Model/MultiGameStatus.d.ts +48 -13
- package/types/BetterGenshinImpact/GameTask/AutoFight/Script/CombatCommand.d.ts +82 -0
- package/types/BetterGenshinImpact/GameTask/AutoFight/Script/CombatScript.d.ts +63 -0
- package/types/BetterGenshinImpact/GameTask/AutoFight/Script/Method.d.ts +171 -0
- package/types/BetterGenshinImpact/GameTask/AutoLeyLineOutcrop/AutoLeyLineOutcropConfig.d.ts +141 -0
- package/types/BetterGenshinImpact/GameTask/AutoLeyLineOutcrop/AutoLeyLineOutcropFightConfig.d.ts +252 -0
- package/types/BetterGenshinImpact/GameTask/AutoLeyLineOutcrop/AutoLeyLineOutcropParam.d.ts +174 -0
- package/types/BetterGenshinImpact/GameTask/AutoLeyLineOutcrop/AutoLeyLineOutcropTask.d.ts +57 -0
- package/types/BetterGenshinImpact/GameTask/AutoPathing/Model/MaterialInfo.d.ts +49 -0
- package/types/BetterGenshinImpact/GameTask/AutoPathing/Model/Waypoint.d.ts +173 -0
- package/types/BetterGenshinImpact/GameTask/AutoPathing/Model/WaypointForTrack.d.ts +105 -0
- package/types/BetterGenshinImpact/GameTask/AutoPathing/NavigationInstance.d.ts +102 -0
- package/types/BetterGenshinImpact/GameTask/AutoPathing/PathingScriptNames.d.ts +82 -0
- package/types/BetterGenshinImpact/GameTask/AutoSkip/AutoSkipConfig.d.ts +212 -107
- package/types/BetterGenshinImpact/GameTask/AutoStygianOnslaught/AutoStygianOnslaughtConfig.d.ts +104 -0
- package/types/BetterGenshinImpact/GameTask/AutoStygianOnslaught/AutoStygianOnslaughtParam.d.ts +143 -0
- package/types/BetterGenshinImpact/GameTask/AutoStygianOnslaught/AutoStygianOnslaughtTask.d.ts +191 -0
- package/types/BetterGenshinImpact/GameTask/CaptureContent.d.ts +87 -0
- package/types/BetterGenshinImpact/GameTask/Common/BgiVision/BvStatus.d.ts +50 -0
- package/types/BetterGenshinImpact/GameTask/Common/Job/CountInventoryItemParam.d.ts +70 -0
- package/types/BetterGenshinImpact/GameTask/Common/Job/CraftMaterialTask.d.ts +85 -0
- package/types/BetterGenshinImpact/GameTask/Common/Job/ItemIconRecognitionMode.d.ts +43 -0
- package/types/BetterGenshinImpact/GameTask/Common/Map/MapScriptNames.d.ts +46 -0
- package/types/BetterGenshinImpact/GameTask/Common/Reward/RewardItem.d.ts +80 -0
- package/types/BetterGenshinImpact/GameTask/Common/StateMachine/StateMachineBase.d.ts +43 -0
- package/types/BetterGenshinImpact/GameTask/ISoloTask.d.ts +76 -4
- package/types/BetterGenshinImpact/GameTask/Model/Area/Converter/INodeConverter.d.ts +43 -9
- package/types/BetterGenshinImpact/GameTask/Model/Area/DesktopRegion.d.ts +134 -51
- package/types/BetterGenshinImpact/GameTask/Model/Area/GameCaptureRegion.d.ts +184 -71
- package/types/BetterGenshinImpact/GameTask/Model/Area/ImageRegion.d.ts +171 -95
- package/types/BetterGenshinImpact/GameTask/Model/Area/Region.d.ts +471 -226
- package/types/BetterGenshinImpact/GameTask/Model/BaseTaskParam.d.ts +37 -5
- package/types/BetterGenshinImpact/GameTask/Model/GameUI/GridScreenName.d.ts +95 -0
- package/types/BetterGenshinImpact/GameTask/Model/ISystemInfo.d.ts +90 -0
- package/types/BetterGenshinImpact/Helpers/User32Helper.d.ts +223 -224
- package/types/BetterGenshinImpact/View/Drawable/DrawContent.d.ts +112 -35
- package/types/BetterGenshinImpact/View/Drawable/LineDrawable.d.ts +67 -12
- package/types/BetterGenshinImpact/View/Drawable/RectDrawable.d.ts +71 -20
- package/types/BetterGenshinImpact/View/Drawable/TextDrawable.d.ts +59 -0
- package/types/CommunityToolkit/Mvvm/ComponentModel/ObservableObject.d.ts +35 -0
- package/types/Compunet/YoloSharp/Metadata/YoloArchitecture.d.ts +28 -0
- package/types/Compunet/YoloSharp/Metadata/YoloMetadata.d.ts +38 -0
- package/types/Compunet/YoloSharp/Metadata/YoloName.d.ts +27 -0
- package/types/Compunet/YoloSharp/Metadata/YoloTask.d.ts +31 -0
- package/types/Compunet/YoloSharp/YoloConfiguration.d.ts +36 -0
- package/types/Compunet/YoloSharp/YoloPredictor.d.ts +39 -0
- package/types/Compunet/YoloSharp/YoloPredictorOptions.d.ts +33 -0
- package/types/Fischless/WindowsInput/IKeyboardSimulator.d.ts +83 -56
- package/types/Fischless/WindowsInput/IMouseSimulator.d.ts +65 -51
- package/types/Microsoft/ClearScript/AsyncDocumentLoadCallback.d.ts +39 -0
- package/types/Microsoft/ClearScript/ContinuationCallback.d.ts +29 -0
- package/types/Microsoft/ClearScript/CustomAttributeLoader.d.ts +34 -0
- package/types/Microsoft/ClearScript/Document.d.ts +22 -0
- package/types/Microsoft/ClearScript/DocumentAccessFlags.d.ts +29 -0
- package/types/Microsoft/ClearScript/DocumentCategory.d.ts +20 -0
- package/types/Microsoft/ClearScript/DocumentContextCallback.d.ts +35 -0
- package/types/Microsoft/ClearScript/DocumentFlags.d.ts +25 -0
- package/types/Microsoft/ClearScript/DocumentInfo.d.ts +31 -0
- package/types/Microsoft/ClearScript/DocumentLoadCallback.d.ts +32 -0
- package/types/Microsoft/ClearScript/DocumentLoader.d.ts +47 -0
- package/types/Microsoft/ClearScript/DocumentSettings.d.ts +54 -0
- package/types/Microsoft/ClearScript/HostEvent.d.ts +27 -0
- package/types/Microsoft/ClearScript/HostFunctions.d.ts +109 -0
- package/types/Microsoft/ClearScript/HostItemFlags.d.ts +27 -0
- package/types/Microsoft/ClearScript/HostType.d.ts +181 -0
- package/types/Microsoft/ClearScript/HostTypeCollection.d.ts +11 -0
- package/types/Microsoft/ClearScript/HostVariable.d.ts +66 -0
- package/types/Microsoft/ClearScript/IScriptEngine.d.ts +207 -0
- package/types/Microsoft/ClearScript/IScriptObject.d.ts +55 -0
- package/types/Microsoft/ClearScript/IScriptableObject.d.ts +32 -0
- package/types/Microsoft/ClearScript/PropertyBag.d.ts +28 -0
- package/types/Microsoft/ClearScript/ScriptAccess.d.ts +25 -0
- package/types/Microsoft/ClearScript/ScriptEngine.d.ts +202 -0
- package/types/Microsoft/ClearScript/ScriptObject.d.ts +69 -0
- package/types/Microsoft/ClearScript/Undefined.d.ts +15 -0
- package/types/Microsoft/ClearScript/V8/V8ProxyHelpers.d.ts +7 -0
- package/types/Microsoft/ClearScript/ValueRef.d.ts +25 -0
- package/types/Microsoft/ClearScript/VoidResult.d.ts +15 -0
- package/types/Microsoft/Extensions/Localization/IStringLocalizer.d.ts +71 -6
- package/types/Microsoft/Extensions/Localization/LocalizedString.d.ts +24 -20
- package/types/Microsoft/Extensions/Logging/EventId.d.ts +33 -0
- package/types/Microsoft/Extensions/Logging/ILogger.d.ts +42 -0
- package/types/Microsoft/Extensions/Logging/LogLevel.d.ts +29 -0
- package/types/Microsoft/ML/OnnxRuntime/CoreMLFlags.d.ts +30 -0
- package/types/Microsoft/ML/OnnxRuntime/DisposableNamedOnnxValue.d.ts +28 -0
- package/types/Microsoft/ML/OnnxRuntime/ExecutionMode.d.ts +24 -0
- package/types/Microsoft/ML/OnnxRuntime/FixedBufferOnnxValue.d.ts +47 -0
- package/types/Microsoft/ML/OnnxRuntime/GraphOptimizationLevel.d.ts +29 -0
- package/types/Microsoft/ML/OnnxRuntime/IDisposableReadOnlyCollection.d.ts +51 -0
- package/types/Microsoft/ML/OnnxRuntime/InferenceSession.d.ts +200 -0
- package/types/Microsoft/ML/OnnxRuntime/MapMetadata.d.ts +20 -0
- package/types/Microsoft/ML/OnnxRuntime/ModelMetadata.d.ts +24 -0
- package/types/Microsoft/ML/OnnxRuntime/NamedOnnxValue.d.ts +46 -0
- package/types/Microsoft/ML/OnnxRuntime/NnapiFlags.d.ts +28 -0
- package/types/Microsoft/ML/OnnxRuntime/NodeMetadata.d.ts +37 -0
- package/types/Microsoft/ML/OnnxRuntime/OnnxValueType.d.ts +29 -0
- package/types/Microsoft/ML/OnnxRuntime/OptionalMetadata.d.ts +18 -0
- package/types/Microsoft/ML/OnnxRuntime/OrtAllocator.d.ts +38 -0
- package/types/Microsoft/ML/OnnxRuntime/OrtAllocatorType.d.ts +24 -0
- package/types/Microsoft/ML/OnnxRuntime/OrtCUDAProviderOptions.d.ts +35 -0
- package/types/Microsoft/ML/OnnxRuntime/OrtExternalAllocation.d.ts +43 -0
- package/types/Microsoft/ML/OnnxRuntime/OrtIoBinding.d.ts +74 -0
- package/types/Microsoft/ML/OnnxRuntime/OrtLoggingLevel.d.ts +27 -0
- package/types/Microsoft/ML/OnnxRuntime/OrtLoraAdapter.d.ts +36 -0
- package/types/Microsoft/ML/OnnxRuntime/OrtMapTypeInfo.d.ts +21 -0
- package/types/Microsoft/ML/OnnxRuntime/OrtMemType.d.ts +26 -0
- package/types/Microsoft/ML/OnnxRuntime/OrtMemoryAllocation.d.ts +28 -0
- package/types/Microsoft/ML/OnnxRuntime/OrtMemoryInfo.d.ts +61 -0
- package/types/Microsoft/ML/OnnxRuntime/OrtROCMProviderOptions.d.ts +35 -0
- package/types/Microsoft/ML/OnnxRuntime/OrtSequenceOrOptionalTypeInfo.d.ts +23 -0
- package/types/Microsoft/ML/OnnxRuntime/OrtTensorRTProviderOptions.d.ts +40 -0
- package/types/Microsoft/ML/OnnxRuntime/OrtTensorTypeAndShapeInfo.d.ts +27 -0
- package/types/Microsoft/ML/OnnxRuntime/OrtTypeInfo.d.ts +25 -0
- package/types/Microsoft/ML/OnnxRuntime/OrtValue.d.ts +184 -0
- package/types/Microsoft/ML/OnnxRuntime/PrePackedWeightsContainer.d.ts +30 -0
- package/types/Microsoft/ML/OnnxRuntime/RunOptions.d.ts +49 -0
- package/types/Microsoft/ML/OnnxRuntime/SequenceMetadata.d.ts +18 -0
- package/types/Microsoft/ML/OnnxRuntime/SessionOptions.d.ts +170 -0
- package/types/Microsoft/ML/OnnxRuntime/Tensors/DenseTensor.d.ts +64 -0
- package/types/Microsoft/ML/OnnxRuntime/Tensors/Tensor.d.ts +117 -0
- package/types/Microsoft/ML/OnnxRuntime/Tensors/TensorBase.d.ts +31 -0
- package/types/Microsoft/ML/OnnxRuntime/Tensors/TensorElementType.d.ts +39 -0
- package/types/Microsoft/ML/OnnxRuntime/Tensors/TensorElementTypeInfo.d.ts +31 -0
- package/types/Microsoft/ML/OnnxRuntime/Tensors/TensorTypeInfo.d.ts +32 -0
- package/types/Microsoft/Win32/SafeHandles/SafeFileHandle.d.ts +33 -0
- package/types/Microsoft/Win32/SafeHandles/SafeHandleZeroOrMinusOneIsInvalid.d.ts +24 -0
- package/types/Microsoft/Win32/SafeHandles/SafeProcessHandle.d.ts +30 -0
- package/types/Microsoft/Win32/SafeHandles/SafeWaitHandle.d.ts +30 -0
- package/types/OpenCvSharp/AKAZE.d.ts +90 -0
- package/types/OpenCvSharp/AKAZEDescriptorType.d.ts +26 -0
- package/types/OpenCvSharp/AccessFlag.d.ts +27 -0
- package/types/OpenCvSharp/AdaptiveThresholdTypes.d.ts +27 -0
- package/types/OpenCvSharp/AgastFeatureDetector.d.ts +76 -0
- package/types/OpenCvSharp/Algorithm.d.ts +31 -0
- package/types/OpenCvSharp/AlgorithmParamType.d.ts +34 -0
- package/types/OpenCvSharp/Aruco/CornerRefineMethod.d.ts +26 -0
- package/types/OpenCvSharp/Aruco/CvAruco.d.ts +118 -0
- package/types/OpenCvSharp/Aruco/DetectorParameters.d.ts +60 -0
- package/types/OpenCvSharp/Aruco/Dictionary.d.ts +74 -0
- package/types/OpenCvSharp/Aruco/PredefinedDictionaryName.d.ts +46 -0
- package/types/OpenCvSharp/BFMatcher.d.ts +29 -0
- package/types/OpenCvSharp/BOWImgDescriptorExtractor.d.ts +76 -0
- package/types/OpenCvSharp/BOWKMeansTrainer.d.ts +52 -0
- package/types/OpenCvSharp/BOWTrainer.d.ts +34 -0
- package/types/OpenCvSharp/BRISK.d.ts +91 -0
- package/types/OpenCvSharp/BackgroundSubtractor.d.ts +41 -0
- package/types/OpenCvSharp/BackgroundSubtractorGMG.d.ts +63 -0
- package/types/OpenCvSharp/BackgroundSubtractorKNN.d.ts +60 -0
- package/types/OpenCvSharp/BackgroundSubtractorMOG.d.ts +57 -0
- package/types/OpenCvSharp/BackgroundSubtractorMog2.d.ts +70 -0
- package/types/OpenCvSharp/BorderTypes.d.ts +30 -0
- package/types/OpenCvSharp/BroxOpticalFlow.d.ts +32 -0
- package/types/OpenCvSharp/ButtonType.d.ts +25 -0
- package/types/OpenCvSharp/CLAHE.d.ts +44 -0
- package/types/OpenCvSharp/CalibrateCRF.d.ts +32 -0
- package/types/OpenCvSharp/CalibrateDebevec.d.ts +44 -0
- package/types/OpenCvSharp/CalibrateRobertson.d.ts +43 -0
- package/types/OpenCvSharp/CalibrationFlags.d.ts +40 -0
- package/types/OpenCvSharp/CameraChannels.d.ts +27 -0
- package/types/OpenCvSharp/CapturePosRatio.d.ts +24 -0
- package/types/OpenCvSharp/CaptureType.d.ts +25 -0
- package/types/OpenCvSharp/CascadeClassifier.d.ts +147 -0
- package/types/OpenCvSharp/ChessboardFlags.d.ts +29 -0
- package/types/OpenCvSharp/CircleSegment.d.ts +33 -0
- package/types/OpenCvSharp/CmpType.d.ts +28 -0
- package/types/OpenCvSharp/ColorConversionCodes.d.ts +223 -0
- package/types/OpenCvSharp/ColormapTypes.d.ts +44 -0
- package/types/OpenCvSharp/ConnectedComponent.d.ts +86 -0
- package/types/OpenCvSharp/ConnectedComponentsAlgorithmsTypes.d.ts +33 -0
- package/types/OpenCvSharp/ConnectedComponentsTypes.d.ts +30 -0
- package/types/OpenCvSharp/ContourApproximationModes.d.ts +30 -0
- package/types/OpenCvSharp/ConvertImageModes.d.ts +25 -0
- package/types/OpenCvSharp/CovarFlags.d.ts +28 -0
- package/types/OpenCvSharp/CpuFeatures.d.ts +61 -0
- package/types/OpenCvSharp/CriteriaTypes.d.ts +25 -0
- package/types/OpenCvSharp/Cv2.d.ts +6773 -0
- package/types/OpenCvSharp/CvErrorCallback.d.ts +48 -0
- package/types/OpenCvSharp/CvObject.d.ts +19 -0
- package/types/OpenCvSharp/CvTrackbar.d.ts +38 -0
- package/types/OpenCvSharp/DMatch.d.ts +58 -0
- package/types/OpenCvSharp/DctFlags.d.ts +25 -0
- package/types/OpenCvSharp/DecompTypes.d.ts +28 -0
- package/types/OpenCvSharp/DenseOpticalFlowExt.d.ts +48 -0
- package/types/OpenCvSharp/DescriptorMatcher.d.ts +133 -0
- package/types/OpenCvSharp/Detail/AffineBestOf2NearestMatcher.d.ts +48 -0
- package/types/OpenCvSharp/Detail/BestOf2NearestMatcher.d.ts +49 -0
- package/types/OpenCvSharp/Detail/CvDetail.d.ts +45 -0
- package/types/OpenCvSharp/Detail/FeaturesMatcher.d.ts +41 -0
- package/types/OpenCvSharp/Detail/ImageFeatures.d.ts +60 -0
- package/types/OpenCvSharp/Detail/MatchesInfo.d.ts +47 -0
- package/types/OpenCvSharp/Detail/Stitcher.d.ts +156 -0
- package/types/OpenCvSharp/DftFlags.d.ts +28 -0
- package/types/OpenCvSharp/DisposableCvObject.d.ts +28 -0
- package/types/OpenCvSharp/DisposableObject.d.ts +22 -0
- package/types/OpenCvSharp/DistanceTransformLabelTypes.d.ts +28 -0
- package/types/OpenCvSharp/DistanceTransformMasks.d.ts +28 -0
- package/types/OpenCvSharp/DistanceTypes.d.ts +30 -0
- package/types/OpenCvSharp/DistributionType.d.ts +24 -0
- package/types/OpenCvSharp/Dnn/Backend.d.ts +28 -0
- package/types/OpenCvSharp/Dnn/CvDnn.d.ts +228 -0
- package/types/OpenCvSharp/Dnn/Net.d.ts +126 -0
- package/types/OpenCvSharp/Dnn/Target.d.ts +31 -0
- package/types/OpenCvSharp/DnnSuperres/DnnSuperResImpl.d.ts +69 -0
- package/types/OpenCvSharp/DrawMatchesFlags.d.ts +26 -0
- package/types/OpenCvSharp/DualTVL1OpticalFlow.d.ts +44 -0
- package/types/OpenCvSharp/EM.d.ts +171 -0
- package/types/OpenCvSharp/EdgePreservingMethods.d.ts +27 -0
- package/types/OpenCvSharp/ErrorCode.d.ts +77 -0
- package/types/OpenCvSharp/EssentialMatMethod.d.ts +24 -0
- package/types/OpenCvSharp/FASTType.d.ts +25 -0
- package/types/OpenCvSharp/Face/BasicFaceRecognizer.d.ts +55 -0
- package/types/OpenCvSharp/Face/EigenFaceRecognizer.d.ts +39 -0
- package/types/OpenCvSharp/Face/FaceRecognizer.d.ts +72 -0
- package/types/OpenCvSharp/Face/Facemark.d.ts +33 -0
- package/types/OpenCvSharp/Face/FacemarkAAM.d.ts +67 -0
- package/types/OpenCvSharp/Face/FacemarkLBF.d.ts +96 -0
- package/types/OpenCvSharp/Face/FisherFaceRecognizer.d.ts +39 -0
- package/types/OpenCvSharp/Face/LBPHFaceRecognizer.d.ts +86 -0
- package/types/OpenCvSharp/FarnebackOpticalFlow.d.ts +36 -0
- package/types/OpenCvSharp/FastFeatureDetector.d.ts +41 -0
- package/types/OpenCvSharp/Feature2D.d.ts +86 -0
- package/types/OpenCvSharp/Features2D/SIFT.d.ts +51 -0
- package/types/OpenCvSharp/FileNode.d.ts +274 -0
- package/types/OpenCvSharp/FileNodeIterator.d.ts +73 -0
- package/types/OpenCvSharp/FileStorage.d.ts +240 -0
- package/types/OpenCvSharp/FindCirclesGridFlags.d.ts +28 -0
- package/types/OpenCvSharp/FishEyeCalibrationFlags.d.ts +36 -0
- package/types/OpenCvSharp/Flann/AutotunedIndexParams.d.ts +46 -0
- package/types/OpenCvSharp/Flann/CompositeIndexParams.d.ts +56 -0
- package/types/OpenCvSharp/Flann/FlannCentersInit.d.ts +25 -0
- package/types/OpenCvSharp/Flann/FlannDistance.d.ts +35 -0
- package/types/OpenCvSharp/Flann/Index.d.ts +92 -0
- package/types/OpenCvSharp/Flann/IndexParams.d.ts +60 -0
- package/types/OpenCvSharp/Flann/KDTreeIndexParams.d.ts +28 -0
- package/types/OpenCvSharp/Flann/KMeansIndexParams.d.ts +46 -0
- package/types/OpenCvSharp/Flann/LinearIndexParams.d.ts +29 -0
- package/types/OpenCvSharp/Flann/LshIndexParams.d.ts +31 -0
- package/types/OpenCvSharp/Flann/SavedIndexParams.d.ts +22 -0
- package/types/OpenCvSharp/Flann/SearchParams.d.ts +38 -0
- package/types/OpenCvSharp/FlannBasedMatcher.d.ts +39 -0
- package/types/OpenCvSharp/FlipMode.d.ts +25 -0
- package/types/OpenCvSharp/FloodFillFlags.d.ts +26 -0
- package/types/OpenCvSharp/FormatType.d.ts +28 -0
- package/types/OpenCvSharp/FourCC.d.ts +85 -0
- package/types/OpenCvSharp/FrameSource.d.ts +42 -0
- package/types/OpenCvSharp/FundamentalMatMethods.d.ts +29 -0
- package/types/OpenCvSharp/GFTTDetector.d.ts +71 -0
- package/types/OpenCvSharp/GemmFlags.d.ts +26 -0
- package/types/OpenCvSharp/GeneralizedHough.d.ts +77 -0
- package/types/OpenCvSharp/GeneralizedHoughBallard.d.ts +30 -0
- package/types/OpenCvSharp/GeneralizedHoughGuil.d.ts +54 -0
- package/types/OpenCvSharp/GrabCutClasses.d.ts +26 -0
- package/types/OpenCvSharp/GrabCutModes.d.ts +25 -0
- package/types/OpenCvSharp/HOGDescriptor.d.ts +419 -0
- package/types/OpenCvSharp/HaarDetectionTypes.d.ts +26 -0
- package/types/OpenCvSharp/HandEyeCalibrationMethod.d.ts +30 -0
- package/types/OpenCvSharp/HausdorffDistanceExtractor.d.ts +45 -0
- package/types/OpenCvSharp/HersheyFonts.d.ts +31 -0
- package/types/OpenCvSharp/HierarchyIndex.d.ts +41 -0
- package/types/OpenCvSharp/HistCompMethods.d.ts +29 -0
- package/types/OpenCvSharp/HistogramNormType.d.ts +23 -0
- package/types/OpenCvSharp/HomographyMethods.d.ts +33 -0
- package/types/OpenCvSharp/HoughModes.d.ts +27 -0
- package/types/OpenCvSharp/ICvPtrHolder.d.ts +28 -0
- package/types/OpenCvSharp/IVec.d.ts +79 -0
- package/types/OpenCvSharp/ImageEncodingParam.d.ts +39 -0
- package/types/OpenCvSharp/ImgHash/AverageHash.d.ts +22 -0
- package/types/OpenCvSharp/ImgHash/BlockMeanHash.d.ts +35 -0
- package/types/OpenCvSharp/ImgHash/BlockMeanHashMode.d.ts +24 -0
- package/types/OpenCvSharp/ImgHash/ColorMomentHash.d.ts +29 -0
- package/types/OpenCvSharp/ImgHash/ImgHashBase.d.ts +28 -0
- package/types/OpenCvSharp/ImgHash/MarrHildrethHash.d.ts +47 -0
- package/types/OpenCvSharp/ImgHash/PHash.d.ts +29 -0
- package/types/OpenCvSharp/ImgHash/RadialVarianceHash.d.ts +45 -0
- package/types/OpenCvSharp/ImreadModes.d.ts +35 -0
- package/types/OpenCvSharp/ImwriteEXRTypeFlags.d.ts +24 -0
- package/types/OpenCvSharp/ImwriteFlags.d.ts +40 -0
- package/types/OpenCvSharp/ImwritePAMFlags.d.ts +28 -0
- package/types/OpenCvSharp/ImwritePNGFlags.d.ts +27 -0
- package/types/OpenCvSharp/InOutArrayKind.d.ts +38 -0
- package/types/OpenCvSharp/InpaintMethod.d.ts +24 -0
- package/types/OpenCvSharp/InputArray.d.ts +156 -0
- package/types/OpenCvSharp/InputOutputArray.d.ts +25 -0
- package/types/OpenCvSharp/Internal/ExceptionHandler.d.ts +22 -0
- package/types/OpenCvSharp/Internal/ExceptionStatus.d.ts +24 -0
- package/types/OpenCvSharp/Internal/NativeMethods.d.ts +13049 -0
- package/types/OpenCvSharp/Internal/StdString.d.ts +36 -0
- package/types/OpenCvSharp/Internal/Util/ArrayAddress.d.ts +40 -0
- package/types/OpenCvSharp/Internal/Util/ArrayAddress2.d.ts +44 -0
- package/types/OpenCvSharp/Internal/Util/PInvokeHelper.d.ts +27 -0
- package/types/OpenCvSharp/Internal/Util/ReadOnlyArray2D.d.ts +41 -0
- package/types/OpenCvSharp/Internal/Util/SaturateCast.d.ts +82 -0
- package/types/OpenCvSharp/Internal/Util/ScopedGCHandle.d.ts +40 -0
- package/types/OpenCvSharp/Internal/Vectors/IStdVector.d.ts +47 -0
- package/types/OpenCvSharp/Internal/Vectors/VectorOfByte.d.ts +43 -0
- package/types/OpenCvSharp/Internal/Vectors/VectorOfDMatch.d.ts +44 -0
- package/types/OpenCvSharp/Internal/Vectors/VectorOfDTreesNode.d.ts +40 -0
- package/types/OpenCvSharp/Internal/Vectors/VectorOfDouble.d.ts +43 -0
- package/types/OpenCvSharp/Internal/Vectors/VectorOfFloat.d.ts +43 -0
- package/types/OpenCvSharp/Internal/Vectors/VectorOfImageFeatures.d.ts +38 -0
- package/types/OpenCvSharp/Internal/Vectors/VectorOfInt32.d.ts +43 -0
- package/types/OpenCvSharp/Internal/Vectors/VectorOfKeyPoint.d.ts +44 -0
- package/types/OpenCvSharp/Internal/Vectors/VectorOfMat.d.ts +46 -0
- package/types/OpenCvSharp/Internal/Vectors/VectorOfPoint.d.ts +44 -0
- package/types/OpenCvSharp/Internal/Vectors/VectorOfPoint2d.d.ts +40 -0
- package/types/OpenCvSharp/Internal/Vectors/VectorOfPoint2f.d.ts +44 -0
- package/types/OpenCvSharp/Internal/Vectors/VectorOfPoint3f.d.ts +44 -0
- package/types/OpenCvSharp/Internal/Vectors/VectorOfRect.d.ts +44 -0
- package/types/OpenCvSharp/Internal/Vectors/VectorOfRect2d.d.ts +44 -0
- package/types/OpenCvSharp/Internal/Vectors/VectorOfRotatedRect.d.ts +44 -0
- package/types/OpenCvSharp/Internal/Vectors/VectorOfString.d.ts +39 -0
- package/types/OpenCvSharp/Internal/Vectors/VectorOfVec2f.d.ts +41 -0
- package/types/OpenCvSharp/Internal/Vectors/VectorOfVec3f.d.ts +41 -0
- package/types/OpenCvSharp/Internal/Vectors/VectorOfVec4f.d.ts +43 -0
- package/types/OpenCvSharp/Internal/Vectors/VectorOfVec4i.d.ts +43 -0
- package/types/OpenCvSharp/Internal/Vectors/VectorOfVectorByte.d.ts +40 -0
- package/types/OpenCvSharp/Internal/Vectors/VectorOfVectorDMatch.d.ts +41 -0
- package/types/OpenCvSharp/Internal/Vectors/VectorOfVectorDouble.d.ts +40 -0
- package/types/OpenCvSharp/Internal/Vectors/VectorOfVectorInt32.d.ts +40 -0
- package/types/OpenCvSharp/Internal/Vectors/VectorOfVectorKeyPoint.d.ts +42 -0
- package/types/OpenCvSharp/Internal/Vectors/VectorOfVectorPoint.d.ts +43 -0
- package/types/OpenCvSharp/Internal/Vectors/VectorOfVectorPoint2f.d.ts +41 -0
- package/types/OpenCvSharp/Internal/Win32API.d.ts +19 -0
- package/types/OpenCvSharp/Internal/WindowsLibraryLoader.d.ts +37 -0
- package/types/OpenCvSharp/InterpolationFlags.d.ts +31 -0
- package/types/OpenCvSharp/KAZE.d.ts +70 -0
- package/types/OpenCvSharp/KAZEDiffusivityType.d.ts +26 -0
- package/types/OpenCvSharp/KMeansFlags.d.ts +25 -0
- package/types/OpenCvSharp/KalmanFilter.d.ts +94 -0
- package/types/OpenCvSharp/KeyPoint.d.ts +109 -0
- package/types/OpenCvSharp/KeyPointsFilter.d.ts +57 -0
- package/types/OpenCvSharp/LDA.d.ts +63 -0
- package/types/OpenCvSharp/Line2D.d.ts +54 -0
- package/types/OpenCvSharp/Line3D.d.ts +56 -0
- package/types/OpenCvSharp/LineDescriptor/KeyLine.d.ts +213 -0
- package/types/OpenCvSharp/LineDescriptor/LSDParam.d.ts +73 -0
- package/types/OpenCvSharp/LineIterator.d.ts +98 -0
- package/types/OpenCvSharp/LineSegmentDetector.d.ts +132 -0
- package/types/OpenCvSharp/LineSegmentDetectorModes.d.ts +28 -0
- package/types/OpenCvSharp/LineSegmentPoint.d.ts +61 -0
- package/types/OpenCvSharp/LineSegmentPolar.d.ts +56 -0
- package/types/OpenCvSharp/LineTypes.d.ts +25 -0
- package/types/OpenCvSharp/LogLevel.d.ts +29 -0
- package/types/OpenCvSharp/ML/ANN_MLP.d.ts +149 -0
- package/types/OpenCvSharp/ML/Boost.d.ts +59 -0
- package/types/OpenCvSharp/ML/DTrees.d.ts +104 -0
- package/types/OpenCvSharp/ML/KNearest.d.ts +83 -0
- package/types/OpenCvSharp/ML/LogisticRegression.d.ts +111 -0
- package/types/OpenCvSharp/ML/NormalBayesClassifier.d.ts +48 -0
- package/types/OpenCvSharp/ML/ParamGrid.d.ts +32 -0
- package/types/OpenCvSharp/ML/RTrees.d.ts +36 -0
- package/types/OpenCvSharp/ML/SVM.d.ts +199 -0
- package/types/OpenCvSharp/ML/SampleTypes.d.ts +24 -0
- package/types/OpenCvSharp/ML/StatModel.d.ts +82 -0
- package/types/OpenCvSharp/ML/TrainData.d.ts +26 -0
- package/types/OpenCvSharp/MSER.d.ts +107 -0
- package/types/OpenCvSharp/MarkerTypes.d.ts +29 -0
- package/types/OpenCvSharp/Mat.d.ts +2572 -0
- package/types/OpenCvSharp/MatDiagType.d.ts +25 -0
- package/types/OpenCvSharp/MatExpr.d.ts +121 -0
- package/types/OpenCvSharp/MatExprRowColIndexer.d.ts +31 -0
- package/types/OpenCvSharp/MatForeachFunctionByte.d.ts +30 -0
- package/types/OpenCvSharp/MatForeachFunctionDouble.d.ts +30 -0
- package/types/OpenCvSharp/MatForeachFunctionFloat.d.ts +30 -0
- package/types/OpenCvSharp/MatForeachFunctionInt16.d.ts +30 -0
- package/types/OpenCvSharp/MatForeachFunctionInt32.d.ts +30 -0
- package/types/OpenCvSharp/MatForeachFunctionVec2b.d.ts +31 -0
- package/types/OpenCvSharp/MatForeachFunctionVec2d.d.ts +31 -0
- package/types/OpenCvSharp/MatForeachFunctionVec2f.d.ts +31 -0
- package/types/OpenCvSharp/MatForeachFunctionVec2i.d.ts +31 -0
- package/types/OpenCvSharp/MatForeachFunctionVec2s.d.ts +31 -0
- package/types/OpenCvSharp/MatForeachFunctionVec3b.d.ts +31 -0
- package/types/OpenCvSharp/MatForeachFunctionVec3d.d.ts +31 -0
- package/types/OpenCvSharp/MatForeachFunctionVec3f.d.ts +31 -0
- package/types/OpenCvSharp/MatForeachFunctionVec3i.d.ts +31 -0
- package/types/OpenCvSharp/MatForeachFunctionVec3s.d.ts +31 -0
- package/types/OpenCvSharp/MatForeachFunctionVec4b.d.ts +31 -0
- package/types/OpenCvSharp/MatForeachFunctionVec4d.d.ts +31 -0
- package/types/OpenCvSharp/MatForeachFunctionVec4f.d.ts +31 -0
- package/types/OpenCvSharp/MatForeachFunctionVec4i.d.ts +31 -0
- package/types/OpenCvSharp/MatForeachFunctionVec4s.d.ts +31 -0
- package/types/OpenCvSharp/MatForeachFunctionVec6b.d.ts +31 -0
- package/types/OpenCvSharp/MatForeachFunctionVec6d.d.ts +31 -0
- package/types/OpenCvSharp/MatForeachFunctionVec6f.d.ts +31 -0
- package/types/OpenCvSharp/MatForeachFunctionVec6i.d.ts +31 -0
- package/types/OpenCvSharp/MatForeachFunctionVec6s.d.ts +31 -0
- package/types/OpenCvSharp/MatIndexer.d.ts +59 -0
- package/types/OpenCvSharp/MatMemoryManager.d.ts +48 -0
- package/types/OpenCvSharp/MatOfT.d.ts +1 -0
- package/types/OpenCvSharp/MatType.d.ts +87 -0
- package/types/OpenCvSharp/MergeDebevec.d.ts +22 -0
- package/types/OpenCvSharp/MergeExposures.d.ts +34 -0
- package/types/OpenCvSharp/MergeMertens.d.ts +33 -0
- package/types/OpenCvSharp/Moments.d.ts +125 -0
- package/types/OpenCvSharp/MorphShapes.d.ts +25 -0
- package/types/OpenCvSharp/MorphTypes.d.ts +30 -0
- package/types/OpenCvSharp/MotionTypes.d.ts +26 -0
- package/types/OpenCvSharp/MouseCallback.d.ts +48 -0
- package/types/OpenCvSharp/MouseEventFlags.d.ts +28 -0
- package/types/OpenCvSharp/MouseEventTypes.d.ts +34 -0
- package/types/OpenCvSharp/NormTypes.d.ts +30 -0
- package/types/OpenCvSharp/ORB.d.ts +114 -0
- package/types/OpenCvSharp/ORBScoreType.d.ts +24 -0
- package/types/OpenCvSharp/OpenCVException.d.ts +58 -0
- package/types/OpenCvSharp/OpenCvSharpException.d.ts +30 -0
- package/types/OpenCvSharp/OptFlow/CvOptFlow.d.ts +149 -0
- package/types/OpenCvSharp/OpticalFlowFlags.d.ts +28 -0
- package/types/OpenCvSharp/OutputArray.d.ts +58 -0
- package/types/OpenCvSharp/OutputArrayOfMatList.d.ts +31 -0
- package/types/OpenCvSharp/OutputArrayOfStructList.d.ts +38 -0
- package/types/OpenCvSharp/PCA.d.ts +121 -0
- package/types/OpenCvSharp/PixelConnectivity.d.ts +24 -0
- package/types/OpenCvSharp/Point.d.ts +51 -0
- package/types/OpenCvSharp/Point2d.d.ts +52 -0
- package/types/OpenCvSharp/Point2f.d.ts +53 -0
- package/types/OpenCvSharp/Point3d.d.ts +55 -0
- package/types/OpenCvSharp/Point3f.d.ts +56 -0
- package/types/OpenCvSharp/Point3i.d.ts +53 -0
- package/types/OpenCvSharp/ProjectionType.d.ts +24 -0
- package/types/OpenCvSharp/Ptr.d.ts +25 -0
- package/types/OpenCvSharp/PyrLKOpticalFlow.d.ts +26 -0
- package/types/OpenCvSharp/QRCodeDetector.d.ts +90 -0
- package/types/OpenCvSharp/Quality/QualityBRISQUE.d.ts +35 -0
- package/types/OpenCvSharp/Quality/QualityBase.d.ts +31 -0
- package/types/OpenCvSharp/Quality/QualityGMSD.d.ts +30 -0
- package/types/OpenCvSharp/Quality/QualityMSE.d.ts +30 -0
- package/types/OpenCvSharp/Quality/QualityPSNR.d.ts +49 -0
- package/types/OpenCvSharp/Quality/QualitySSIM.d.ts +30 -0
- package/types/OpenCvSharp/RNG.d.ts +68 -0
- package/types/OpenCvSharp/RNG_MT19937.d.ts +41 -0
- package/types/OpenCvSharp/Range.d.ts +36 -0
- package/types/OpenCvSharp/Rangef.d.ts +38 -0
- package/types/OpenCvSharp/Rect.d.ts +86 -0
- package/types/OpenCvSharp/Rect2d.d.ts +89 -0
- package/types/OpenCvSharp/Rect2f.d.ts +88 -0
- package/types/OpenCvSharp/RectanglesIntersectTypes.d.ts +28 -0
- package/types/OpenCvSharp/ReduceDimension.d.ts +25 -0
- package/types/OpenCvSharp/ReduceTypes.d.ts +26 -0
- package/types/OpenCvSharp/ResourcesTracker.d.ts +49 -0
- package/types/OpenCvSharp/RetrievalModes.d.ts +27 -0
- package/types/OpenCvSharp/RidgeDetectionFilter.d.ts +92 -0
- package/types/OpenCvSharp/RobotWorldHandEyeCalibrationMethod.d.ts +28 -0
- package/types/OpenCvSharp/RobustEstimationAlgorithms.d.ts +36 -0
- package/types/OpenCvSharp/RotateFlags.d.ts +25 -0
- package/types/OpenCvSharp/RotatedRect.d.ts +53 -0
- package/types/OpenCvSharp/SVD.d.ts +98 -0
- package/types/OpenCvSharp/Scalar.d.ts +247 -0
- package/types/OpenCvSharp/SeamlessCloneMethods.d.ts +28 -0
- package/types/OpenCvSharp/Segmentation/IntelligentScissorsMB.d.ts +97 -0
- package/types/OpenCvSharp/ShapeContextDistanceExtractor.d.ts +89 -0
- package/types/OpenCvSharp/ShapeDistanceExtractor.d.ts +28 -0
- package/types/OpenCvSharp/ShapeMatchModes.d.ts +25 -0
- package/types/OpenCvSharp/SimilarRects.d.ts +29 -0
- package/types/OpenCvSharp/SimpleBlobDetector.d.ts +107 -0
- package/types/OpenCvSharp/Size.d.ts +37 -0
- package/types/OpenCvSharp/Size2d.d.ts +42 -0
- package/types/OpenCvSharp/Size2f.d.ts +47 -0
- package/types/OpenCvSharp/SolveLPResult.d.ts +26 -0
- package/types/OpenCvSharp/SolvePnPFlags.d.ts +27 -0
- package/types/OpenCvSharp/SortFlags.d.ts +26 -0
- package/types/OpenCvSharp/SparseMat.d.ts +397 -0
- package/types/OpenCvSharp/SparseMatIndexer.d.ts +94 -0
- package/types/OpenCvSharp/StereoBM.d.ts +54 -0
- package/types/OpenCvSharp/StereoMatcher.d.ts +46 -0
- package/types/OpenCvSharp/StereoRectificationFlags.d.ts +27 -0
- package/types/OpenCvSharp/StereoSGBM.d.ts +139 -0
- package/types/OpenCvSharp/Stitcher.d.ts +136 -0
- package/types/OpenCvSharp/Subdiv2D.d.ts +144 -0
- package/types/OpenCvSharp/SuperResolution.d.ts +57 -0
- package/types/OpenCvSharp/TemplateMatchModes.d.ts +28 -0
- package/types/OpenCvSharp/TermCriteria.d.ts +51 -0
- package/types/OpenCvSharp/Text/BaseOCR.d.ts +65 -0
- package/types/OpenCvSharp/Text/ComponentLevels.d.ts +24 -0
- package/types/OpenCvSharp/Text/CvText.d.ts +37 -0
- package/types/OpenCvSharp/Text/OCRTesseract.d.ts +90 -0
- package/types/OpenCvSharp/TextDetector.d.ts +32 -0
- package/types/OpenCvSharp/TextDetectorCNN.d.ts +41 -0
- package/types/OpenCvSharp/ThresholdTypes.d.ts +30 -0
- package/types/OpenCvSharp/Tonemap.d.ts +36 -0
- package/types/OpenCvSharp/TonemapDrago.d.ts +42 -0
- package/types/OpenCvSharp/TonemapMantiuk.d.ts +42 -0
- package/types/OpenCvSharp/TonemapReinhard.d.ts +49 -0
- package/types/OpenCvSharp/TrackbarCallback.d.ts +33 -0
- package/types/OpenCvSharp/TrackbarCallbackNative.d.ts +36 -0
- package/types/OpenCvSharp/Tracker.d.ts +29 -0
- package/types/OpenCvSharp/TrackerGOTURN.d.ts +46 -0
- package/types/OpenCvSharp/TrackerMIL.d.ts +50 -0
- package/types/OpenCvSharp/Tracking/TrackerCSRT.d.ts +76 -0
- package/types/OpenCvSharp/Tracking/TrackerKCF.d.ts +61 -0
- package/types/OpenCvSharp/Tracking/TrackerTypes.d.ts +28 -0
- package/types/OpenCvSharp/UMat.d.ts +358 -0
- package/types/OpenCvSharp/UMatUsageFlags.d.ts +26 -0
- package/types/OpenCvSharp/UsacParams.d.ts +150 -0
- package/types/OpenCvSharp/Vec2b.d.ts +58 -0
- package/types/OpenCvSharp/Vec2d.d.ts +46 -0
- package/types/OpenCvSharp/Vec2f.d.ts +51 -0
- package/types/OpenCvSharp/Vec2i.d.ts +50 -0
- package/types/OpenCvSharp/Vec2s.d.ts +55 -0
- package/types/OpenCvSharp/Vec2w.d.ts +55 -0
- package/types/OpenCvSharp/Vec3b.d.ts +66 -0
- package/types/OpenCvSharp/Vec3d.d.ts +55 -0
- package/types/OpenCvSharp/Vec3f.d.ts +60 -0
- package/types/OpenCvSharp/Vec3i.d.ts +59 -0
- package/types/OpenCvSharp/Vec3s.d.ts +64 -0
- package/types/OpenCvSharp/Vec3w.d.ts +64 -0
- package/types/OpenCvSharp/Vec4b.d.ts +69 -0
- package/types/OpenCvSharp/Vec4d.d.ts +58 -0
- package/types/OpenCvSharp/Vec4f.d.ts +63 -0
- package/types/OpenCvSharp/Vec4i.d.ts +62 -0
- package/types/OpenCvSharp/Vec4s.d.ts +67 -0
- package/types/OpenCvSharp/Vec4w.d.ts +67 -0
- package/types/OpenCvSharp/Vec6b.d.ts +75 -0
- package/types/OpenCvSharp/Vec6d.d.ts +64 -0
- package/types/OpenCvSharp/Vec6f.d.ts +69 -0
- package/types/OpenCvSharp/Vec6i.d.ts +68 -0
- package/types/OpenCvSharp/Vec6s.d.ts +73 -0
- package/types/OpenCvSharp/Vec6w.d.ts +73 -0
- package/types/OpenCvSharp/VideoAccelerationType.d.ts +30 -0
- package/types/OpenCvSharp/VideoCapture.d.ts +288 -0
- package/types/OpenCvSharp/VideoCaptureAPIs.d.ts +53 -0
- package/types/OpenCvSharp/VideoCapturePara.d.ts +43 -0
- package/types/OpenCvSharp/VideoCaptureProperties.d.ts +152 -0
- package/types/OpenCvSharp/VideoWriter.d.ts +164 -0
- package/types/OpenCvSharp/VideoWriterPara.d.ts +43 -0
- package/types/OpenCvSharp/VideoWriterProperties.d.ts +32 -0
- package/types/OpenCvSharp/WarpPolarMode.d.ts +24 -0
- package/types/OpenCvSharp/WeChatQRCode.d.ts +39 -0
- package/types/OpenCvSharp/Window.d.ts +113 -0
- package/types/OpenCvSharp/WindowFlags.d.ts +30 -0
- package/types/OpenCvSharp/WindowPropertyFlags.d.ts +28 -0
- package/types/OpenCvSharp/XFeatures2D/BriefDescriptorExtractor.d.ts +35 -0
- package/types/OpenCvSharp/XFeatures2D/FREAK.d.ts +49 -0
- package/types/OpenCvSharp/XFeatures2D/LATCH.d.ts +44 -0
- package/types/OpenCvSharp/XFeatures2D/LUCID.d.ts +32 -0
- package/types/OpenCvSharp/XFeatures2D/SURF.d.ts +61 -0
- package/types/OpenCvSharp/XFeatures2D/StarDetector.d.ts +50 -0
- package/types/OpenCvSharp/XImgProc/AdaptiveManifoldFilter.d.ts +59 -0
- package/types/OpenCvSharp/XImgProc/AngleRangeOption.d.ts +31 -0
- package/types/OpenCvSharp/XImgProc/CvXImgProc.d.ts +858 -0
- package/types/OpenCvSharp/XImgProc/DTFilter.d.ts +59 -0
- package/types/OpenCvSharp/XImgProc/EdgeAwareFiltersList.d.ts +30 -0
- package/types/OpenCvSharp/XImgProc/EdgeBoxes.d.ts +168 -0
- package/types/OpenCvSharp/XImgProc/FastBilateralSolverFilter.d.ts +72 -0
- package/types/OpenCvSharp/XImgProc/FastGlobalSmootherFilter.d.ts +55 -0
- package/types/OpenCvSharp/XImgProc/FastLineDetector.d.ts +87 -0
- package/types/OpenCvSharp/XImgProc/GuidedFilter.d.ts +44 -0
- package/types/OpenCvSharp/XImgProc/HoughDeskewOption.d.ts +24 -0
- package/types/OpenCvSharp/XImgProc/HoughOP.d.ts +26 -0
- package/types/OpenCvSharp/XImgProc/LocalBinarizationMethods.d.ts +29 -0
- package/types/OpenCvSharp/XImgProc/RFFeatureGetter.d.ts +41 -0
- package/types/OpenCvSharp/XImgProc/RulesOption.d.ts +24 -0
- package/types/OpenCvSharp/XImgProc/SLICType.d.ts +25 -0
- package/types/OpenCvSharp/XImgProc/Segmentation/GraphSegmentation.d.ts +51 -0
- package/types/OpenCvSharp/XImgProc/Segmentation/SelectiveSearchSegmentation.d.ts +91 -0
- package/types/OpenCvSharp/XImgProc/Segmentation/SelectiveSearchSegmentationStrategy.d.ts +141 -0
- package/types/OpenCvSharp/XImgProc/Segmentation/SelectiveSearchSegmentationStrategyMultiple.d.ts +70 -0
- package/types/OpenCvSharp/XImgProc/StructuredEdgeDetection.d.ts +90 -0
- package/types/OpenCvSharp/XImgProc/SuperpixelLSC.d.ts +58 -0
- package/types/OpenCvSharp/XImgProc/SuperpixelSEEDS.d.ts +78 -0
- package/types/OpenCvSharp/XImgProc/SuperpixelSLIC.d.ts +66 -0
- package/types/OpenCvSharp/XImgProc/ThinningTypes.d.ts +24 -0
- package/types/OpenCvSharp/XImgProc/WMFWeightType.d.ts +28 -0
- package/types/OpenCvSharp/XPhoto/Bm3dSteps.d.ts +25 -0
- package/types/OpenCvSharp/XPhoto/CvXPhoto.d.ts +317 -0
- package/types/OpenCvSharp/XPhoto/GrayworldWB.d.ts +30 -0
- package/types/OpenCvSharp/XPhoto/InpaintTypes.d.ts +25 -0
- package/types/OpenCvSharp/XPhoto/LearningBasedWB.d.ts +40 -0
- package/types/OpenCvSharp/XPhoto/SimpleWB.d.ts +37 -0
- package/types/OpenCvSharp/XPhoto/TonemapDurand.d.ts +57 -0
- package/types/OpenCvSharp/XPhoto/TransformTypes.d.ts +23 -0
- package/types/OpenCvSharp/XPhoto/WhiteBalancer.d.ts +27 -0
- package/types/SixLabors/ImageSharp/Advanced/IConfigurationProvider.d.ts +34 -0
- package/types/SixLabors/ImageSharp/Color.d.ts +224 -0
- package/types/SixLabors/ImageSharp/ColorSpaces/CieXyz.d.ts +40 -0
- package/types/SixLabors/ImageSharp/ColorSpaces/Conversion/CieXyChromaticityCoordinates.d.ts +39 -0
- package/types/SixLabors/ImageSharp/ColorSpaces/Conversion/RGBPrimariesChromaticityCoordinates.d.ts +41 -0
- package/types/SixLabors/ImageSharp/ColorSpaces/Conversion/RgbWorkingSpace.d.ts +30 -0
- package/types/SixLabors/ImageSharp/ColorSpaces/Rgb.d.ts +53 -0
- package/types/SixLabors/ImageSharp/Configuration.d.ts +54 -0
- package/types/SixLabors/ImageSharp/Formats/DecoderOptions.d.ts +35 -0
- package/types/SixLabors/ImageSharp/Formats/IImageDecoder.d.ts +73 -0
- package/types/SixLabors/ImageSharp/Formats/IImageEncoder.d.ts +42 -0
- package/types/SixLabors/ImageSharp/Formats/IImageFormat.d.ts +102 -0
- package/types/SixLabors/ImageSharp/Formats/IImageFormatConfigurationModule.d.ts +36 -0
- package/types/SixLabors/ImageSharp/Formats/IImageFormatDetector.d.ts +33 -0
- package/types/SixLabors/ImageSharp/Formats/ImageFormatManager.d.ts +59 -0
- package/types/SixLabors/ImageSharp/Formats/PixelTypeInfo.d.ts +33 -0
- package/types/SixLabors/ImageSharp/GraphicsOptions.d.ts +35 -0
- package/types/SixLabors/ImageSharp/IDeepCloneable.d.ts +66 -0
- package/types/SixLabors/ImageSharp/Image.d.ts +401 -3
- package/types/SixLabors/ImageSharp/ImageFrame.d.ts +102 -0
- package/types/SixLabors/ImageSharp/ImageFrameCollection.d.ts +131 -0
- package/types/SixLabors/ImageSharp/ImageInfo.d.ts +45 -0
- package/types/SixLabors/ImageSharp/Memory/AllocationOptions.d.ts +28 -0
- package/types/SixLabors/ImageSharp/Memory/Buffer2D{T}.d.ts +42 -0
- package/types/SixLabors/ImageSharp/Memory/IMemoryGroup{T}.d.ts +51 -0
- package/types/SixLabors/ImageSharp/Memory/MemoryAllocator.d.ts +43 -0
- package/types/SixLabors/ImageSharp/Memory/MemoryAllocatorOptions.d.ts +27 -0
- package/types/SixLabors/ImageSharp/Metadata/ImageFrameMetadata.d.ts +48 -0
- package/types/SixLabors/ImageSharp/Metadata/ImageMetadata.d.ts +57 -0
- package/types/SixLabors/ImageSharp/Metadata/PixelResolutionUnit.d.ts +30 -0
- package/types/SixLabors/ImageSharp/Metadata/Profiles/Cicp/CicpColorPrimaries.d.ts +38 -0
- package/types/SixLabors/ImageSharp/Metadata/Profiles/Cicp/CicpMatrixCoefficients.d.ts +43 -0
- package/types/SixLabors/ImageSharp/Metadata/Profiles/Cicp/CicpProfile.d.ts +44 -0
- package/types/SixLabors/ImageSharp/Metadata/Profiles/Cicp/CicpTransferCharacteristics.d.ts +47 -0
- package/types/SixLabors/ImageSharp/Metadata/Profiles/Exif/EncodedString.d.ts +60 -0
- package/types/SixLabors/ImageSharp/Metadata/Profiles/Exif/ExifDataType.d.ts +43 -0
- package/types/SixLabors/ImageSharp/Metadata/Profiles/Exif/ExifParts.d.ts +31 -0
- package/types/SixLabors/ImageSharp/Metadata/Profiles/Exif/ExifProfile.d.ts +59 -0
- package/types/SixLabors/ImageSharp/Metadata/Profiles/Exif/ExifTag.d.ts +360 -0
- package/types/SixLabors/ImageSharp/Metadata/Profiles/Exif/IExifValue.d.ts +69 -0
- package/types/SixLabors/ImageSharp/Metadata/Profiles/Icc/IccColorSpaceType.d.ts +51 -0
- package/types/SixLabors/ImageSharp/Metadata/Profiles/Icc/IccDeviceAttribute.d.ts +34 -0
- package/types/SixLabors/ImageSharp/Metadata/Profiles/Icc/IccPrimaryPlatformType.d.ts +34 -0
- package/types/SixLabors/ImageSharp/Metadata/Profiles/Icc/IccProfile.d.ts +42 -0
- package/types/SixLabors/ImageSharp/Metadata/Profiles/Icc/IccProfileClass.d.ts +33 -0
- package/types/SixLabors/ImageSharp/Metadata/Profiles/Icc/IccProfileFlag.d.ts +31 -0
- package/types/SixLabors/ImageSharp/Metadata/Profiles/Icc/IccProfileHeader.d.ts +53 -0
- package/types/SixLabors/ImageSharp/Metadata/Profiles/Icc/IccProfileId.d.ts +41 -0
- package/types/SixLabors/ImageSharp/Metadata/Profiles/Icc/IccProfileTag.d.ts +90 -0
- package/types/SixLabors/ImageSharp/Metadata/Profiles/Icc/IccRenderingIntent.d.ts +30 -0
- package/types/SixLabors/ImageSharp/Metadata/Profiles/Icc/IccTagDataEntry.d.ts +28 -0
- package/types/SixLabors/ImageSharp/Metadata/Profiles/Icc/IccTypeSignature.d.ts +61 -0
- package/types/SixLabors/ImageSharp/Metadata/Profiles/Icc/IccVersion.d.ts +37 -0
- package/types/SixLabors/ImageSharp/Metadata/Profiles/Iptc/IptcProfile.d.ts +76 -0
- package/types/SixLabors/ImageSharp/Metadata/Profiles/Iptc/IptcTag.d.ts +95 -0
- package/types/SixLabors/ImageSharp/Metadata/Profiles/Iptc/IptcValue.d.ts +36 -0
- package/types/SixLabors/ImageSharp/Metadata/Profiles/Xmp/XmpProfile.d.ts +35 -0
- package/types/SixLabors/ImageSharp/Number.d.ts +36 -0
- package/types/SixLabors/ImageSharp/PixelAccessorAction.d.ts +86 -0
- package/types/SixLabors/ImageSharp/PixelFormats/Abgr32.d.ts +104 -0
- package/types/SixLabors/ImageSharp/PixelFormats/Argb32.d.ts +104 -0
- package/types/SixLabors/ImageSharp/PixelFormats/Bgr24.d.ts +73 -0
- package/types/SixLabors/ImageSharp/PixelFormats/Bgra32.d.ts +87 -0
- package/types/SixLabors/ImageSharp/PixelFormats/Bgra5551.d.ts +78 -0
- package/types/SixLabors/ImageSharp/PixelFormats/IPackedVector{TPacked}.d.ts +45 -0
- package/types/SixLabors/ImageSharp/PixelFormats/IPixel.d.ts +94 -0
- package/types/SixLabors/ImageSharp/PixelFormats/L16.d.ts +72 -0
- package/types/SixLabors/ImageSharp/PixelFormats/L8.d.ts +72 -0
- package/types/SixLabors/ImageSharp/PixelFormats/La16.d.ts +74 -0
- package/types/SixLabors/ImageSharp/PixelFormats/La32.d.ts +74 -0
- package/types/SixLabors/ImageSharp/PixelFormats/PixelAlphaCompositionMode.d.ts +42 -0
- package/types/SixLabors/ImageSharp/PixelFormats/PixelAlphaRepresentation.d.ts +32 -0
- package/types/SixLabors/ImageSharp/PixelFormats/PixelBlender{TPixel}.d.ts +33 -0
- package/types/SixLabors/ImageSharp/PixelFormats/PixelColorBlendingMode.d.ts +38 -0
- package/types/SixLabors/ImageSharp/PixelFormats/PixelOperations{TPixel}.d.ts +62 -0
- package/types/SixLabors/ImageSharp/PixelFormats/Rgb24.d.ts +73 -0
- package/types/SixLabors/ImageSharp/PixelFormats/Rgb48.d.ts +73 -0
- package/types/SixLabors/ImageSharp/PixelFormats/Rgba32.d.ts +112 -0
- package/types/SixLabors/ImageSharp/PixelFormats/Rgba64.d.ts +95 -0
- package/types/SixLabors/ImageSharp/Point.d.ts +65 -0
- package/types/SixLabors/ImageSharp/PointF.d.ts +69 -0
- package/types/SixLabors/ImageSharp/Processing/Processors/IImageProcessor{TPixel}.d.ts +47 -0
- package/types/SixLabors/ImageSharp/Processing/Processors/Transforms/IResampler.d.ts +39 -0
- package/types/SixLabors/ImageSharp/Processing/Processors/Transforms/IResamplingTransformImageProcessor{TPixel}.d.ts +56 -0
- package/types/SixLabors/ImageSharp/Rational.d.ts +53 -0
- package/types/SixLabors/ImageSharp/ReadOrigin.d.ts +24 -0
- package/types/SixLabors/ImageSharp/Rectangle.d.ts +99 -0
- package/types/SixLabors/ImageSharp/RectangleF.d.ts +98 -0
- package/types/SixLabors/ImageSharp/SignedRational.d.ts +52 -0
- package/types/SixLabors/ImageSharp/Size.d.ts +55 -0
- package/types/SixLabors/ImageSharp/SizeF.d.ts +56 -0
- package/types/System/Action.d.ts +235 -0
- package/types/System/AggregateException.d.ts +69 -0
- package/types/System/Array.d.ts +441 -0
- package/types/System/ArraySegment.d.ts +108 -0
- package/types/System/AsyncCallback.d.ts +26 -0
- package/types/System/Attribute.d.ts +148 -0
- package/types/System/Boolean.d.ts +46 -0
- package/types/System/Buffers/IBufferWriter.d.ts +50 -0
- package/types/System/Buffers/IMemoryOwner.d.ts +46 -0
- package/types/System/Buffers/IPinnable.d.ts +35 -0
- package/types/System/Buffers/MemoryHandle.d.ts +22 -0
- package/types/System/Buffers/MemoryManager.d.ts +46 -0
- package/types/System/Buffers/ReadOnlySequence.d.ts +129 -0
- package/types/System/Buffers/ReadOnlySequenceSegment.d.ts +34 -0
- package/types/System/Buffers/SpanAction.d.ts +45 -0
- package/types/System/Byte.d.ts +156 -0
- package/types/System/Char.d.ts +172 -0
- package/types/System/CharEnumerator.d.ts +32 -0
- package/types/System/Collections/CollectionBase.d.ts +37 -0
- package/types/System/Collections/Concurrent/ConcurrentDictionary.d.ts +142 -0
- package/types/System/Collections/DictionaryEntry.d.ts +19 -8
- package/types/System/Collections/Generic/Dictionary.d.ts +263 -179
- package/types/System/Collections/Generic/HashSet.d.ts +134 -0
- package/types/System/Collections/Generic/ICollection.d.ts +44 -11
- package/types/System/Collections/Generic/IComparer.d.ts +44 -0
- package/types/System/Collections/Generic/IDictionary.d.ts +55 -3
- package/types/System/Collections/Generic/IEnumerable.d.ts +38 -4
- package/types/System/Collections/Generic/IEnumerator.d.ts +38 -4
- package/types/System/Collections/Generic/IEqualityComparer.d.ts +39 -4
- package/types/System/Collections/Generic/IList.d.ts +42 -11
- package/types/System/Collections/Generic/IReadOnlyCollection.d.ts +40 -3
- package/types/System/Collections/Generic/IReadOnlyDictionary.d.ts +51 -9
- package/types/System/Collections/Generic/IReadOnlyList.d.ts +45 -3
- package/types/System/Collections/Generic/IReadOnlySet.d.ts +53 -0
- package/types/System/Collections/Generic/ISet.d.ts +52 -0
- package/types/System/Collections/Generic/KeyValuePair.d.ts +35 -12
- package/types/System/Collections/Generic/List.d.ts +180 -139
- package/types/System/Collections/ICollection.d.ts +29 -8
- package/types/System/Collections/IComparer.d.ts +27 -0
- package/types/System/Collections/IDictionary.d.ts +33 -18
- package/types/System/Collections/IDictionaryEnumerator.d.ts +28 -6
- package/types/System/Collections/IEnumerable.d.ts +22 -3
- package/types/System/Collections/IEnumerator.d.ts +23 -6
- package/types/System/Collections/IEqualityComparer.d.ts +24 -4
- package/types/System/Collections/IList.d.ts +39 -21
- package/types/System/Collections/IStructuralComparable.d.ts +26 -4
- package/types/System/Collections/IStructuralEquatable.d.ts +25 -4
- package/types/System/Collections/ObjectModel/Collection.d.ts +71 -0
- package/types/System/Collections/ObjectModel/ReadOnlyCollection.d.ts +64 -0
- package/types/System/Collections/ReadOnlyCollectionBase.d.ts +29 -0
- package/types/System/Collections/Specialized/StringDictionary.d.ts +50 -0
- package/types/System/Comparison.d.ts +39 -0
- package/types/System/ComponentModel/Component.d.ts +42 -0
- package/types/System/ComponentModel/ComponentCollection.d.ts +46 -0
- package/types/System/ComponentModel/IComponent.d.ts +32 -0
- package/types/System/ComponentModel/IContainer.d.ts +34 -0
- package/types/System/ComponentModel/INotifyPropertyChanged.d.ts +37 -0
- package/types/System/ComponentModel/INotifyPropertyChanging.d.ts +37 -0
- package/types/System/ComponentModel/ISite.d.ts +32 -0
- package/types/System/ComponentModel/ISynchronizeInvoke.d.ts +35 -0
- package/types/System/ComponentModel/PropertyChangedEventArgs.d.ts +23 -0
- package/types/System/ComponentModel/PropertyChangedEventHandler.d.ts +36 -0
- package/types/System/ComponentModel/PropertyChangingEventArgs.d.ts +24 -0
- package/types/System/ComponentModel/PropertyChangingEventHandler.d.ts +36 -0
- package/types/System/Configuration/Assemblies/AssemblyHashAlgorithm.d.ts +35 -0
- package/types/System/Configuration/Assemblies/AssemblyVersionCompatibility.d.ts +33 -0
- package/types/System/Converter.d.ts +44 -0
- package/types/System/DateOnly.d.ts +154 -0
- package/types/System/DateTime.d.ts +308 -3
- package/types/System/DateTimeKind.d.ts +25 -0
- package/types/System/DateTimeOffset.d.ts +218 -3
- package/types/System/DayOfWeek.d.ts +29 -0
- package/types/System/Decimal.d.ts +225 -0
- package/types/System/Delegate.d.ts +78 -0
- package/types/System/Diagnostics/DataReceivedEventArgs.d.ts +21 -0
- package/types/System/Diagnostics/DataReceivedEventHandler.d.ts +35 -0
- package/types/System/Diagnostics/FileVersionInfo.d.ts +50 -0
- package/types/System/Diagnostics/Process.d.ts +230 -0
- package/types/System/Diagnostics/ProcessModule.d.ts +41 -0
- package/types/System/Diagnostics/ProcessModuleCollection.d.ts +46 -0
- package/types/System/Diagnostics/ProcessPriorityClass.d.ts +31 -0
- package/types/System/Diagnostics/ProcessStartInfo.d.ts +66 -0
- package/types/System/Diagnostics/ProcessThread.d.ts +69 -0
- package/types/System/Diagnostics/ProcessThreadCollection.d.ts +55 -0
- package/types/System/Diagnostics/ProcessWindowStyle.d.ts +26 -0
- package/types/System/Diagnostics/ThreadPriorityLevel.d.ts +29 -0
- package/types/System/Diagnostics/ThreadState.d.ts +30 -0
- package/types/System/Diagnostics/ThreadWaitReason.d.ts +36 -0
- package/types/System/Dispatch.d.ts +28 -0
- package/types/System/Double.d.ts +272 -0
- package/types/System/Drawing/Bitmap.d.ts +119 -2
- package/types/System/Drawing/Brush.d.ts +26 -0
- package/types/System/Drawing/CharacterRange.d.ts +34 -0
- package/types/System/Drawing/Color.d.ts +198 -334
- package/types/System/Drawing/CopyPixelOperation.d.ts +39 -0
- package/types/System/Drawing/Drawing2D/CombineMode.d.ts +32 -0
- package/types/System/Drawing/Drawing2D/CompositingMode.d.ts +28 -0
- package/types/System/Drawing/Drawing2D/CompositingQuality.d.ts +32 -0
- package/types/System/Drawing/Drawing2D/CoordinateSpace.d.ts +29 -0
- package/types/System/Drawing/Drawing2D/CustomLineCap.d.ts +74 -0
- package/types/System/Drawing/Drawing2D/DashCap.d.ts +29 -0
- package/types/System/Drawing/Drawing2D/DashStyle.d.ts +32 -0
- package/types/System/Drawing/Drawing2D/FillMode.d.ts +28 -0
- package/types/System/Drawing/Drawing2D/FlushIntention.d.ts +28 -0
- package/types/System/Drawing/Drawing2D/GraphicsContainer.d.ts +20 -0
- package/types/System/Drawing/Drawing2D/GraphicsPath.d.ts +409 -0
- package/types/System/Drawing/Drawing2D/GraphicsState.d.ts +17 -0
- package/types/System/Drawing/Drawing2D/InterpolationMode.d.ts +35 -0
- package/types/System/Drawing/Drawing2D/LineCap.d.ts +37 -0
- package/types/System/Drawing/Drawing2D/LineJoin.d.ts +30 -0
- package/types/System/Drawing/Drawing2D/Matrix.d.ts +142 -0
- package/types/System/Drawing/Drawing2D/MatrixOrder.d.ts +28 -0
- package/types/System/Drawing/Drawing2D/PathData.d.ts +30 -0
- package/types/System/Drawing/Drawing2D/PenAlignment.d.ts +31 -0
- package/types/System/Drawing/Drawing2D/PenType.d.ts +31 -0
- package/types/System/Drawing/Drawing2D/PixelOffsetMode.d.ts +32 -0
- package/types/System/Drawing/Drawing2D/RegionData.d.ts +22 -0
- package/types/System/Drawing/Drawing2D/SmoothingMode.d.ts +32 -0
- package/types/System/Drawing/Drawing2D/WarpMode.d.ts +28 -0
- package/types/System/Drawing/Drawing2D/WrapMode.d.ts +31 -0
- package/types/System/Drawing/Font.d.ts +173 -0
- package/types/System/Drawing/FontFamily.d.ts +66 -0
- package/types/System/Drawing/FontStyle.d.ts +27 -0
- package/types/System/Drawing/Graphics.d.ts +1289 -0
- package/types/System/Drawing/GraphicsUnit.d.ts +29 -0
- package/types/System/Drawing/IDeviceContext.d.ts +31 -0
- package/types/System/Drawing/Icon.d.ts +91 -0
- package/types/System/Drawing/Image.d.ts +165 -3
- package/types/System/Drawing/Imaging/BitmapData.d.ts +34 -0
- package/types/System/Drawing/Imaging/CachedBitmap.d.ts +27 -0
- package/types/System/Drawing/Imaging/ColorAdjustType.d.ts +33 -0
- package/types/System/Drawing/Imaging/ColorChannelFlag.d.ts +31 -0
- package/types/System/Drawing/Imaging/ColorMap.d.ts +29 -0
- package/types/System/Drawing/Imaging/ColorMatrix.d.ts +65 -0
- package/types/System/Drawing/Imaging/ColorMatrixFlag.d.ts +29 -0
- package/types/System/Drawing/Imaging/ColorPalette.d.ts +24 -0
- package/types/System/Drawing/Imaging/EmfPlusRecordType.d.ts +279 -0
- package/types/System/Drawing/Imaging/EmfType.d.ts +29 -0
- package/types/System/Drawing/Imaging/Encoder.d.ts +37 -0
- package/types/System/Drawing/Imaging/EncoderParameter.d.ts +119 -0
- package/types/System/Drawing/Imaging/EncoderParameterValueType.d.ts +39 -0
- package/types/System/Drawing/Imaging/EncoderParameters.d.ts +35 -0
- package/types/System/Drawing/Imaging/FrameDimension.d.ts +30 -0
- package/types/System/Drawing/Imaging/ImageAttributes.d.ts +138 -0
- package/types/System/Drawing/Imaging/ImageCodecFlags.d.ts +35 -0
- package/types/System/Drawing/Imaging/ImageCodecInfo.d.ts +37 -0
- package/types/System/Drawing/Imaging/ImageFormat.d.ts +39 -0
- package/types/System/Drawing/Imaging/ImageLockMode.d.ts +30 -0
- package/types/System/Drawing/Imaging/MetaHeader.d.ts +33 -0
- package/types/System/Drawing/Imaging/Metafile.d.ts +257 -0
- package/types/System/Drawing/Imaging/MetafileFrameUnit.d.ts +32 -0
- package/types/System/Drawing/Imaging/MetafileHeader.d.ts +41 -0
- package/types/System/Drawing/Imaging/MetafileType.d.ts +32 -0
- package/types/System/Drawing/Imaging/PixelFormat.d.ts +49 -0
- package/types/System/Drawing/Imaging/PlayRecordCallback.d.ts +48 -0
- package/types/System/Drawing/Imaging/PropertyItem.d.ts +25 -0
- package/types/System/Drawing/Imaging/WmfPlaceableFileHeader.d.ts +35 -0
- package/types/System/Drawing/Interop/LOGFONT.d.ts +34 -0
- package/types/System/Drawing/KnownColor.d.ts +191 -351
- package/types/System/Drawing/Pen.d.ts +121 -3
- package/types/System/Drawing/Point.d.ts +46 -0
- package/types/System/Drawing/PointF.d.ts +43 -0
- package/types/System/Drawing/Rectangle.d.ts +80 -0
- package/types/System/Drawing/RectangleF.d.ts +76 -0
- package/types/System/Drawing/Region.d.ts +157 -0
- package/types/System/Drawing/RotateFlipType.d.ts +38 -0
- package/types/System/Drawing/Size.d.ts +42 -0
- package/types/System/Drawing/SizeF.d.ts +48 -0
- package/types/System/Drawing/StringAlignment.d.ts +25 -0
- package/types/System/Drawing/StringDigitSubstitute.d.ts +29 -0
- package/types/System/Drawing/StringFormat.d.ts +89 -0
- package/types/System/Drawing/StringFormatFlags.d.ts +31 -0
- package/types/System/Drawing/StringTrimming.d.ts +28 -0
- package/types/System/Drawing/Text/FontCollection.d.ts +26 -0
- package/types/System/Drawing/Text/GenericFontFamilies.d.ts +29 -0
- package/types/System/Drawing/Text/HotkeyPrefix.d.ts +29 -0
- package/types/System/Drawing/Text/TextRenderingHint.d.ts +32 -0
- package/types/System/Dynamic/BinaryOperationBinder.d.ts +41 -0
- package/types/System/Dynamic/BindingRestrictions.d.ts +45 -0
- package/types/System/Dynamic/CallInfo.d.ts +36 -0
- package/types/System/Dynamic/ConvertBinder.d.ts +34 -0
- package/types/System/Dynamic/CreateInstanceBinder.d.ts +41 -0
- package/types/System/Dynamic/DeleteIndexBinder.d.ts +41 -0
- package/types/System/Dynamic/DeleteMemberBinder.d.ts +37 -0
- package/types/System/Dynamic/DynamicMetaObject.d.ts +96 -0
- package/types/System/Dynamic/DynamicMetaObjectBinder.d.ts +50 -0
- package/types/System/Dynamic/DynamicObject.d.ts +86 -0
- package/types/System/Dynamic/GetIndexBinder.d.ts +38 -0
- package/types/System/Dynamic/GetMemberBinder.d.ts +34 -0
- package/types/System/Dynamic/IDynamicMetaObjectProvider.d.ts +36 -0
- package/types/System/Dynamic/InvokeBinder.d.ts +38 -0
- package/types/System/Dynamic/InvokeMemberBinder.d.ts +54 -0
- package/types/System/Dynamic/SetIndexBinder.d.ts +40 -0
- package/types/System/Dynamic/SetMemberBinder.d.ts +38 -0
- package/types/System/Dynamic/UnaryOperationBinder.d.ts +39 -0
- package/types/System/Enum.d.ts +99 -0
- package/types/System/EventArgs.d.ts +27 -0
- package/types/System/EventHandler.d.ts +57 -0
- package/types/System/Func.d.ts +247 -0
- package/types/System/Globalization/Calendar.d.ts +135 -0
- package/types/System/Globalization/CalendarAlgorithmType.d.ts +29 -0
- package/types/System/Globalization/CalendarWeekRule.d.ts +25 -0
- package/types/System/Globalization/CompareInfo.d.ts +217 -0
- package/types/System/Globalization/CompareOptions.d.ts +31 -0
- package/types/System/Globalization/CultureInfo.d.ts +78 -3
- package/types/System/Globalization/CultureTypes.d.ts +30 -0
- package/types/System/Globalization/DateTimeFormatInfo.d.ts +85 -0
- package/types/System/Globalization/DateTimeStyles.d.ts +32 -0
- package/types/System/Globalization/DigitShapes.d.ts +25 -0
- package/types/System/Globalization/NumberFormatInfo.d.ts +66 -0
- package/types/System/Globalization/NumberStyles.d.ts +41 -0
- package/types/System/Globalization/SortKey.d.ts +28 -0
- package/types/System/Globalization/SortVersion.d.ts +31 -0
- package/types/System/Globalization/TextInfo.d.ts +48 -0
- package/types/System/Globalization/TimeSpanStyles.d.ts +24 -0
- package/types/System/Globalization/UnicodeCategory.d.ts +52 -0
- package/types/System/Guid.d.ts +104 -0
- package/types/System/IAsyncDisposable.d.ts +20 -3
- package/types/System/IAsyncResult.d.ts +31 -0
- package/types/System/ICloneable.d.ts +27 -0
- package/types/System/IComparable.d.ts +56 -3
- package/types/System/IConvertible.d.ts +47 -0
- package/types/System/IDisposable.d.ts +22 -3
- package/types/System/IEquatable.d.ts +38 -3
- package/types/System/IFormatProvider.d.ts +28 -0
- package/types/System/IFormattable.d.ts +28 -0
- package/types/System/IO/FileAccess.d.ts +25 -0
- package/types/System/IO/FileMode.d.ts +28 -0
- package/types/System/IO/FileOptions.d.ts +29 -0
- package/types/System/IO/FileShare.d.ts +28 -0
- package/types/System/IO/FileStream.d.ts +227 -0
- package/types/System/IO/FileStreamOptions.d.ts +39 -0
- package/types/System/IO/MemoryStream.d.ts +145 -0
- package/types/System/IO/SeekOrigin.d.ts +25 -0
- package/types/System/IO/Stream.d.ts +204 -0
- package/types/System/IO/StreamReader.d.ts +153 -0
- package/types/System/IO/StreamWriter.d.ts +149 -0
- package/types/System/IO/TextReader.d.ts +90 -0
- package/types/System/IO/TextWriter.d.ts +163 -0
- package/types/System/IO/UnixFileMode.d.ts +35 -0
- package/types/System/IParsable.d.ts +51 -0
- package/types/System/ISpanFormattable.d.ts +27 -0
- package/types/System/ISpanParsable.d.ts +44 -0
- package/types/System/IUtf8SpanFormattable.d.ts +31 -0
- package/types/System/IUtf8SpanParsable.d.ts +44 -0
- package/types/System/Index.d.ts +38 -0
- package/types/System/Int16.d.ts +165 -0
- package/types/System/Int32.d.ts +164 -0
- package/types/System/Int64.d.ts +165 -0
- package/types/System/IntPtr.d.ts +132 -0
- package/types/System/Lazy.d.ts +46 -0
- package/types/System/Linq/Expressions/BinaryExpression.d.ts +43 -0
- package/types/System/Linq/Expressions/BlockExpression.d.ts +34 -0
- package/types/System/Linq/Expressions/CatchBlock.d.ts +33 -0
- package/types/System/Linq/Expressions/ConditionalExpression.d.ts +35 -0
- package/types/System/Linq/Expressions/ConstantExpression.d.ts +28 -0
- package/types/System/Linq/Expressions/DebugInfoExpression.d.ts +41 -0
- package/types/System/Linq/Expressions/DefaultExpression.d.ts +27 -0
- package/types/System/Linq/Expressions/DynamicExpression.d.ts +135 -0
- package/types/System/Linq/Expressions/ElementInit.d.ts +35 -0
- package/types/System/Linq/Expressions/Expression.d.ts +1631 -0
- package/types/System/Linq/Expressions/ExpressionType.d.ts +111 -0
- package/types/System/Linq/Expressions/GotoExpression.d.ts +33 -0
- package/types/System/Linq/Expressions/GotoExpressionKind.d.ts +30 -0
- package/types/System/Linq/Expressions/IArgumentProvider.d.ts +37 -0
- package/types/System/Linq/Expressions/IDynamicExpression.d.ts +39 -0
- package/types/System/Linq/Expressions/IndexExpression.d.ts +52 -0
- package/types/System/Linq/Expressions/InvocationExpression.d.ts +46 -0
- package/types/System/Linq/Expressions/LabelExpression.d.ts +31 -0
- package/types/System/Linq/Expressions/LabelTarget.d.ts +24 -0
- package/types/System/Linq/Expressions/LambdaExpression.d.ts +39 -0
- package/types/System/Linq/Expressions/ListInitExpression.d.ts +39 -0
- package/types/System/Linq/Expressions/LoopExpression.d.ts +33 -0
- package/types/System/Linq/Expressions/MemberAssignment.d.ts +23 -0
- package/types/System/Linq/Expressions/MemberBinding.d.ts +25 -0
- package/types/System/Linq/Expressions/MemberBindingType.d.ts +29 -0
- package/types/System/Linq/Expressions/MemberExpression.d.ts +28 -0
- package/types/System/Linq/Expressions/MemberInitExpression.d.ts +39 -0
- package/types/System/Linq/Expressions/MemberListBinding.d.ts +30 -0
- package/types/System/Linq/Expressions/MemberMemberBinding.d.ts +29 -0
- package/types/System/Linq/Expressions/MethodCallExpression.d.ts +55 -0
- package/types/System/Linq/Expressions/NewArrayExpression.d.ts +31 -0
- package/types/System/Linq/Expressions/NewExpression.d.ts +52 -0
- package/types/System/Linq/Expressions/ParameterExpression.d.ts +29 -0
- package/types/System/Linq/Expressions/RuntimeVariablesExpression.d.ts +35 -0
- package/types/System/Linq/Expressions/SwitchCase.d.ts +30 -0
- package/types/System/Linq/Expressions/SwitchExpression.d.ts +37 -0
- package/types/System/Linq/Expressions/SymbolDocumentInfo.d.ts +28 -0
- package/types/System/Linq/Expressions/TryExpression.d.ts +37 -0
- package/types/System/Linq/Expressions/TypeBinaryExpression.d.ts +32 -0
- package/types/System/Linq/Expressions/UnaryExpression.d.ts +40 -0
- package/types/System/MarshalByRefObject.d.ts +21 -0
- package/types/System/Memory.d.ts +56 -0
- package/types/System/MidpointRounding.d.ts +27 -0
- package/types/System/ModuleHandle.d.ts +61 -0
- package/types/System/MulticastDelegate.d.ts +24 -0
- package/types/System/Net/ICredentials.d.ts +29 -0
- package/types/System/Net/ICredentialsByHost.d.ts +40 -0
- package/types/System/Net/NetworkCredential.d.ts +54 -0
- package/types/System/Nullable.d.ts +36 -0
- package/types/System/Numerics/IAdditionOperators.d.ts +54 -0
- package/types/System/Numerics/IAdditiveIdentity.d.ts +55 -0
- package/types/System/Numerics/IBinaryFloatingPointIeee754.d.ts +81 -0
- package/types/System/Numerics/IBinaryInteger.d.ts +105 -0
- package/types/System/Numerics/IBinaryNumber.d.ts +70 -0
- package/types/System/Numerics/IBitwiseOperators.d.ts +57 -0
- package/types/System/Numerics/IComparisonOperators.d.ts +61 -0
- package/types/System/Numerics/IDecrementOperators.d.ts +44 -0
- package/types/System/Numerics/IDivisionOperators.d.ts +54 -0
- package/types/System/Numerics/IEqualityOperators.d.ts +54 -0
- package/types/System/Numerics/IExponentialFunctions.d.ts +72 -0
- package/types/System/Numerics/IFloatingPoint.d.ts +110 -0
- package/types/System/Numerics/IFloatingPointConstants.d.ts +68 -0
- package/types/System/Numerics/IFloatingPointIeee754.d.ts +96 -0
- package/types/System/Numerics/IHyperbolicFunctions.d.ts +72 -0
- package/types/System/Numerics/IIncrementOperators.d.ts +44 -0
- package/types/System/Numerics/ILogarithmicFunctions.d.ts +73 -0
- package/types/System/Numerics/IMinMaxValue.d.ts +45 -0
- package/types/System/Numerics/IModulusOperators.d.ts +57 -0
- package/types/System/Numerics/IMultiplicativeIdentity.d.ts +56 -0
- package/types/System/Numerics/IMultiplyOperators.d.ts +54 -0
- package/types/System/Numerics/INumber.d.ts +72 -0
- package/types/System/Numerics/INumberBase.d.ts +104 -0
- package/types/System/Numerics/IPowerFunctions.d.ts +64 -0
- package/types/System/Numerics/IRootFunctions.d.ts +69 -0
- package/types/System/Numerics/IShiftOperators.d.ts +57 -0
- package/types/System/Numerics/ISignedNumber.d.ts +63 -0
- package/types/System/Numerics/ISubtractionOperators.d.ts +60 -0
- package/types/System/Numerics/ITrigonometricFunctions.d.ts +83 -0
- package/types/System/Numerics/IUnaryNegationOperators.d.ts +54 -0
- package/types/System/Numerics/IUnaryPlusOperators.d.ts +51 -0
- package/types/System/Numerics/IUnsignedNumber.d.ts +62 -0
- package/types/System/Numerics/Matrix3x2.d.ts +123 -0
- package/types/System/Numerics/Matrix4x4.d.ts +299 -0
- package/types/System/Numerics/Plane.d.ts +57 -0
- package/types/System/Numerics/Quaternion.d.ts +108 -0
- package/types/System/Numerics/Tensors/IReadOnlyTensor.d.ts +68 -0
- package/types/System/Numerics/Tensors/ITensor.d.ts +70 -0
- package/types/System/Numerics/Tensors/Tensor.d.ts +58 -0
- package/types/System/Numerics/Vector2.d.ts +121 -0
- package/types/System/Numerics/Vector3.d.ts +124 -0
- package/types/System/Numerics/Vector4.d.ts +137 -0
- package/types/System/Object.d.ts +29 -0
- package/types/System/Predicate.d.ts +39 -0
- package/types/System/Range.d.ts +38 -0
- package/types/System/ReadOnlyMemory.d.ts +60 -0
- package/types/System/Reflection/Assembly.d.ts +158 -0
- package/types/System/Reflection/AssemblyContentType.d.ts +24 -0
- package/types/System/Reflection/AssemblyName.d.ts +78 -0
- package/types/System/Reflection/AssemblyNameFlags.d.ts +27 -0
- package/types/System/Reflection/Binder.d.ts +65 -0
- package/types/System/Reflection/BindingFlags.d.ts +43 -0
- package/types/System/Reflection/CallingConventions.d.ts +27 -0
- package/types/System/Reflection/CommonJSManager.d.ts +137 -0
- package/types/System/Reflection/ConstructorInfo.d.ts +43 -0
- package/types/System/Reflection/CustomAttributeData.d.ts +52 -0
- package/types/System/Reflection/CustomAttributeNamedArgument.d.ts +41 -0
- package/types/System/Reflection/CustomAttributeTypedArgument.d.ts +32 -0
- package/types/System/Reflection/EventAttributes.d.ts +26 -0
- package/types/System/Reflection/EventInfo.d.ts +65 -0
- package/types/System/Reflection/ExceptionHandlingClause.d.ts +33 -0
- package/types/System/Reflection/ExceptionHandlingClauseOptions.d.ts +30 -0
- package/types/System/Reflection/FieldAttributes.d.ts +41 -0
- package/types/System/Reflection/FieldInfo.d.ts +106 -0
- package/types/System/Reflection/GenericParameterAttributes.d.ts +34 -0
- package/types/System/Reflection/ICustomAttributeProvider.d.ts +36 -0
- package/types/System/Reflection/IReflect.d.ts +94 -0
- package/types/System/Reflection/IReflectableType.d.ts +28 -0
- package/types/System/Reflection/ImageFileMachine.d.ts +26 -0
- package/types/System/Reflection/InterfaceMapping.d.ts +28 -0
- package/types/System/Reflection/LocalVariableInfo.d.ts +28 -0
- package/types/System/Reflection/ManifestResourceInfo.d.ts +35 -0
- package/types/System/Reflection/MemberFilter.d.ts +31 -0
- package/types/System/Reflection/MemberInfo.d.ts +43 -0
- package/types/System/Reflection/MemberTypes.d.ts +31 -0
- package/types/System/Reflection/MethodAttributes.d.ts +46 -0
- package/types/System/Reflection/MethodBase.d.ts +115 -0
- package/types/System/Reflection/MethodBody.d.ts +30 -0
- package/types/System/Reflection/MethodImplAttributes.d.ts +42 -0
- package/types/System/Reflection/MethodInfo.d.ts +53 -0
- package/types/System/Reflection/ModuleResolveEventHandler.d.ts +36 -0
- package/types/System/Reflection/ParameterAttributes.d.ts +33 -0
- package/types/System/Reflection/ParameterInfo.d.ts +58 -0
- package/types/System/Reflection/ParameterModifier.d.ts +30 -0
- package/types/System/Reflection/PortableExecutableKinds.d.ts +31 -0
- package/types/System/Reflection/ProcessorArchitecture.d.ts +31 -0
- package/types/System/Reflection/PropertyAttributes.d.ts +30 -0
- package/types/System/Reflection/PropertyInfo.d.ts +103 -0
- package/types/System/Reflection/ResourceLocation.d.ts +25 -0
- package/types/System/Reflection/StrongNameKeyPair.d.ts +35 -0
- package/types/System/Reflection/TypeAttributes.d.ts +54 -0
- package/types/System/Reflection/TypeFilter.d.ts +31 -0
- package/types/System/Reflection/TypeInfo.d.ts +70 -0
- package/types/System/ResolveEventArgs.d.ts +23 -0
- package/types/System/Runtime/CompilerServices/CallSite.d.ts +52 -0
- package/types/System/Runtime/CompilerServices/CallSiteBinder.d.ts +38 -0
- package/types/System/Runtime/CompilerServices/ConfiguredTaskAwaitable.d.ts +96 -0
- package/types/System/Runtime/CompilerServices/ConfiguredValueTaskAwaitable.d.ts +99 -0
- package/types/System/Runtime/CompilerServices/DebugInfoGenerator.d.ts +35 -0
- package/types/System/Runtime/CompilerServices/ICriticalNotifyCompletion.d.ts +37 -0
- package/types/System/Runtime/CompilerServices/INotifyCompletion.d.ts +32 -0
- package/types/System/Runtime/CompilerServices/ITuple.d.ts +28 -4
- package/types/System/Runtime/CompilerServices/TaskAwaiter.d.ts +59 -0
- package/types/System/Runtime/CompilerServices/ValueTaskAwaiter.d.ts +62 -0
- package/types/System/Runtime/CompilerServices/YieldAwaitable.d.ts +52 -0
- package/types/System/Runtime/ConstrainedExecution/CriticalFinalizerObject.d.ts +23 -0
- package/types/System/Runtime/InteropServices/CharSet.d.ts +30 -0
- package/types/System/Runtime/InteropServices/GCHandle.d.ts +41 -0
- package/types/System/Runtime/InteropServices/GCHandleType.d.ts +30 -0
- package/types/System/Runtime/InteropServices/LayoutKind.d.ts +29 -0
- package/types/System/Runtime/InteropServices/SafeHandle.d.ts +42 -0
- package/types/System/Runtime/InteropServices/StructLayoutAttribute.d.ts +38 -0
- package/types/System/Runtime/Serialization/DeserializationToken.d.ts +27 -0
- package/types/System/Runtime/Serialization/IDeserializationCallback.d.ts +28 -3
- package/types/System/Runtime/Serialization/IFormatterConverter.d.ts +55 -0
- package/types/System/Runtime/Serialization/IObjectReference.d.ts +28 -0
- package/types/System/Runtime/Serialization/ISerializable.d.ts +27 -3
- package/types/System/Runtime/Serialization/SerializationEntry.d.ts +25 -0
- package/types/System/Runtime/Serialization/SerializationInfo.d.ts +90 -0
- package/types/System/Runtime/Serialization/SerializationInfoEnumerator.d.ts +35 -0
- package/types/System/Runtime/Serialization/StreamingContext.d.ts +33 -0
- package/types/System/Runtime/Serialization/StreamingContextStates.d.ts +38 -0
- package/types/System/RuntimeFieldHandle.d.ts +35 -0
- package/types/System/RuntimeMethodHandle.d.ts +36 -0
- package/types/System/RuntimeTypeHandle.d.ts +37 -0
- package/types/System/SByte.d.ts +165 -0
- package/types/System/Security/Cryptography/RandomNumberGenerator.d.ts +48 -0
- package/types/System/Security/SecureString.d.ts +44 -0
- package/types/System/Security/SecurityRuleSet.d.ts +25 -0
- package/types/System/SequencePosition.d.ts +31 -0
- package/types/System/Single.d.ts +272 -0
- package/types/System/String.d.ts +495 -0
- package/types/System/StringComparison.d.ts +28 -0
- package/types/System/StringSplitOptions.d.ts +25 -0
- package/types/System/SystemException.d.ts +30 -0
- package/types/System/Text/CompositeFormat.d.ts +24 -0
- package/types/System/Text/Decoder.d.ts +70 -0
- package/types/System/Text/DecoderFallback.d.ts +26 -0
- package/types/System/Text/DecoderFallbackBuffer.d.ts +36 -0
- package/types/System/Text/Encoder.d.ts +58 -0
- package/types/System/Text/EncoderFallback.d.ts +26 -0
- package/types/System/Text/EncoderFallbackBuffer.d.ts +40 -0
- package/types/System/Text/Encoding.d.ts +169 -0
- package/types/System/Text/EncodingInfo.d.ts +37 -0
- package/types/System/Text/EncodingProvider.d.ts +40 -0
- package/types/System/Text/Encodings/Web/JavaScriptEncoder.d.ts +35 -0
- package/types/System/Text/Encodings/Web/TextEncoder.d.ts +42 -0
- package/types/System/Text/Encodings/Web/TextEncoderSettings.d.ts +50 -0
- package/types/System/Text/Json/JsonElement.d.ts +152 -0
- package/types/System/Text/Json/JsonEncodedText.d.ts +34 -0
- package/types/System/Text/Json/JsonProperty.d.ts +29 -0
- package/types/System/Text/Json/JsonValueKind.d.ts +34 -0
- package/types/System/Text/Json/JsonWriterOptions.d.ts +29 -0
- package/types/System/Text/Json/Utf8JsonWriter.d.ts +149 -0
- package/types/System/Text/NormalizationForm.d.ts +26 -0
- package/types/System/Text/Rune.d.ts +101 -0
- package/types/System/Text/StringBuilder.d.ts +414 -0
- package/types/System/Text/StringRuneEnumerator.d.ts +36 -0
- package/types/System/Text/Unicode/UnicodeRange.d.ts +34 -0
- package/types/System/Threading/CancellationToken.d.ts +48 -49
- package/types/System/Threading/CancellationTokenRegistration.d.ts +25 -18
- package/types/System/Threading/CancellationTokenSource.d.ts +48 -41
- package/types/System/Threading/ITimer.d.ts +19 -3
- package/types/System/Threading/LazyThreadSafetyMode.d.ts +28 -0
- package/types/System/Threading/Tasks/ConfigureAwaitOptions.d.ts +33 -0
- package/types/System/Threading/Tasks/Sources/IValueTaskSource.d.ts +91 -0
- package/types/System/Threading/Tasks/Sources/ValueTaskSourceOnCompletedFlags.d.ts +33 -0
- package/types/System/Threading/Tasks/Sources/ValueTaskSourceStatus.d.ts +33 -0
- package/types/System/Threading/Tasks/Task.d.ts +513 -0
- package/types/System/Threading/Tasks/TaskContinuationOptions.d.ts +44 -0
- package/types/System/Threading/Tasks/TaskCreationOptions.d.ts +33 -0
- package/types/System/Threading/Tasks/TaskFactory.d.ts +791 -0
- package/types/System/Threading/Tasks/TaskScheduler.d.ts +28 -0
- package/types/System/Threading/Tasks/TaskStatus.d.ts +34 -0
- package/types/System/Threading/Tasks/UnobservedTaskExceptionEventArgs.d.ts +31 -0
- package/types/System/Threading/Tasks/ValueTask.d.ts +97 -5
- package/types/System/Threading/TimerCallback.d.ts +31 -0
- package/types/System/Threading/WaitHandle.d.ts +84 -3
- package/types/System/TimeOnly.d.ts +189 -0
- package/types/System/TimeProvider.d.ts +36 -23
- package/types/System/TimeSpan.d.ts +170 -3
- package/types/System/TimeZoneInfo.d.ts +224 -0
- package/types/System/TypeCode.d.ts +40 -0
- package/types/System/UInt16.d.ts +156 -0
- package/types/System/UInt32.d.ts +156 -0
- package/types/System/UInt64.d.ts +156 -0
- package/types/System/UIntPtr.d.ts +133 -0
- package/types/System/Uri.d.ts +138 -0
- package/types/System/UriComponents.d.ts +39 -0
- package/types/System/UriCreationOptions.d.ts +18 -0
- package/types/System/UriFormat.d.ts +25 -0
- package/types/System/UriHostNameType.d.ts +27 -0
- package/types/System/UriKind.d.ts +25 -0
- package/types/System/UriPartial.d.ts +26 -0
- package/types/System/V8SplitProxyHelpers.d.ts +537 -0
- package/types/System/ValueTuple.d.ts +122 -0
- package/types/System/ValueType.d.ts +19 -0
- package/types/System/Version.d.ts +71 -0
- package/types/System/WebSocket.d.ts +50 -0
- package/types/System/Windows/Media/Matrix.d.ts +107 -72
- package/types/System/Windows/Point.d.ts +38 -32
- package/types/System/Windows/Rect.d.ts +102 -0
- package/types/System/Windows/Size.d.ts +38 -0
- package/types/System/Windows/Vector.d.ts +57 -42
- package/types/System/Xml/ConformanceLevel.d.ts +25 -0
- package/types/System/Xml/DtdProcessing.d.ts +25 -0
- package/types/System/Xml/IXmlLineInfo.d.ts +29 -0
- package/types/System/Xml/IXmlNamespaceResolver.d.ts +38 -0
- package/types/System/Xml/Linq/LoadOptions.d.ts +30 -0
- package/types/System/Xml/Linq/ReaderOptions.d.ts +28 -0
- package/types/System/Xml/Linq/SaveOptions.d.ts +29 -0
- package/types/System/Xml/Linq/XAttribute.d.ts +49 -0
- package/types/System/Xml/Linq/XContainer.d.ts +68 -0
- package/types/System/Xml/Linq/XDeclaration.d.ts +27 -0
- package/types/System/Xml/Linq/XDocument.d.ts +127 -0
- package/types/System/Xml/Linq/XDocumentType.d.ts +46 -0
- package/types/System/Xml/Linq/XElement.d.ts +180 -0
- package/types/System/Xml/Linq/XName.d.ts +32 -0
- package/types/System/Xml/Linq/XNamespace.d.ts +31 -0
- package/types/System/Xml/Linq/XNode.d.ts +103 -0
- package/types/System/Xml/Linq/XNodeDocumentOrderComparer.d.ts +35 -0
- package/types/System/Xml/Linq/XNodeEqualityComparer.d.ts +35 -0
- package/types/System/Xml/Linq/XObject.d.ts +47 -0
- package/types/System/Xml/Linq/XObjectChange.d.ts +30 -0
- package/types/System/Xml/Linq/XObjectChangeEventArgs.d.ts +32 -0
- package/types/System/Xml/Linq/XStreamingElement.d.ts +50 -0
- package/types/System/Xml/NamespaceHandling.d.ts +24 -0
- package/types/System/Xml/NewLineHandling.d.ts +25 -0
- package/types/System/Xml/ReadState.d.ts +27 -0
- package/types/System/Xml/Schema/IXmlSchemaInfo.d.ts +38 -0
- package/types/System/Xml/Schema/ValidationEventArgs.d.ts +28 -0
- package/types/System/Xml/Schema/ValidationEventHandler.d.ts +35 -0
- package/types/System/Xml/Schema/XmlSchema.d.ts +113 -0
- package/types/System/Xml/Schema/XmlSchemaAnnotated.d.ts +35 -0
- package/types/System/Xml/Schema/XmlSchemaAnnotation.d.ts +35 -0
- package/types/System/Xml/Schema/XmlSchemaAnyAttribute.d.ts +32 -0
- package/types/System/Xml/Schema/XmlSchemaAttribute.d.ts +54 -0
- package/types/System/Xml/Schema/XmlSchemaCompilationSettings.d.ts +28 -0
- package/types/System/Xml/Schema/XmlSchemaComplexType.d.ts +59 -0
- package/types/System/Xml/Schema/XmlSchemaContent.d.ts +17 -0
- package/types/System/Xml/Schema/XmlSchemaContentModel.d.ts +25 -0
- package/types/System/Xml/Schema/XmlSchemaContentProcessing.d.ts +34 -0
- package/types/System/Xml/Schema/XmlSchemaContentType.d.ts +33 -0
- package/types/System/Xml/Schema/XmlSchemaDatatype.d.ts +45 -0
- package/types/System/Xml/Schema/XmlSchemaDatatypeVariety.d.ts +32 -0
- package/types/System/Xml/Schema/XmlSchemaDerivationMethod.d.ts +38 -0
- package/types/System/Xml/Schema/XmlSchemaElement.d.ts +69 -0
- package/types/System/Xml/Schema/XmlSchemaException.d.ts +62 -0
- package/types/System/Xml/Schema/XmlSchemaForm.d.ts +29 -0
- package/types/System/Xml/Schema/XmlSchemaObject.d.ts +26 -0
- package/types/System/Xml/Schema/XmlSchemaObjectCollection.d.ts +66 -0
- package/types/System/Xml/Schema/XmlSchemaObjectEnumerator.d.ts +31 -0
- package/types/System/Xml/Schema/XmlSchemaObjectTable.d.ts +36 -0
- package/types/System/Xml/Schema/XmlSchemaParticle.d.ts +27 -0
- package/types/System/Xml/Schema/XmlSchemaSet.d.ts +71 -0
- package/types/System/Xml/Schema/XmlSchemaSimpleType.d.ts +28 -0
- package/types/System/Xml/Schema/XmlSchemaSimpleTypeContent.d.ts +21 -0
- package/types/System/Xml/Schema/XmlSchemaType.d.ts +72 -0
- package/types/System/Xml/Schema/XmlSchemaUse.d.ts +30 -0
- package/types/System/Xml/Schema/XmlSchemaValidationFlags.d.ts +35 -0
- package/types/System/Xml/Schema/XmlSchemaValidity.d.ts +29 -0
- package/types/System/Xml/Schema/XmlSeverityType.d.ts +28 -0
- package/types/System/Xml/Schema/XmlTypeCode.d.ts +81 -0
- package/types/System/Xml/Serialization/IXmlSerializable.d.ts +33 -0
- package/types/System/Xml/Serialization/XmlSerializerNamespaces.d.ts +34 -0
- package/types/System/Xml/ValidationType.d.ts +27 -0
- package/types/System/Xml/WriteState.d.ts +29 -0
- package/types/System/Xml/XPath/IXPathNavigable.d.ts +28 -0
- package/types/System/Xml/XPath/XPathExpression.d.ts +48 -0
- package/types/System/Xml/XPath/XPathItem.d.ts +36 -0
- package/types/System/Xml/XPath/XPathNamespaceScope.d.ts +29 -0
- package/types/System/Xml/XPath/XPathNavigator.d.ts +306 -0
- package/types/System/Xml/XPath/XPathNodeIterator.d.ts +34 -0
- package/types/System/Xml/XPath/XPathNodeType.d.ts +36 -0
- package/types/System/Xml/XPath/XPathResultType.d.ts +33 -0
- package/types/System/Xml/XPath/XmlCaseOrder.d.ts +29 -0
- package/types/System/Xml/XPath/XmlDataType.d.ts +28 -0
- package/types/System/Xml/XPath/XmlSortOrder.d.ts +28 -0
- package/types/System/Xml/XmlAttribute.d.ts +87 -0
- package/types/System/Xml/XmlAttributeCollection.d.ts +73 -0
- package/types/System/Xml/XmlCDataSection.d.ts +47 -0
- package/types/System/Xml/XmlCharacterData.d.ts +61 -0
- package/types/System/Xml/XmlComment.d.ts +38 -0
- package/types/System/Xml/XmlDeclaration.d.ts +53 -0
- package/types/System/Xml/XmlDocument.d.ts +217 -0
- package/types/System/Xml/XmlDocumentFragment.d.ts +52 -0
- package/types/System/Xml/XmlDocumentType.d.ts +56 -0
- package/types/System/Xml/XmlElement.d.ts +105 -0
- package/types/System/Xml/XmlEntityReference.d.ts +52 -0
- package/types/System/Xml/XmlImplementation.d.ts +31 -0
- package/types/System/Xml/XmlLinkedNode.d.ts +27 -0
- package/types/System/Xml/XmlNameTable.d.ts +36 -0
- package/types/System/Xml/XmlNamedNodeMap.d.ts +33 -0
- package/types/System/Xml/XmlNamespaceManager.d.ts +47 -0
- package/types/System/Xml/XmlNamespaceScope.d.ts +25 -0
- package/types/System/Xml/XmlNode.d.ts +94 -0
- package/types/System/Xml/XmlNodeChangedAction.d.ts +28 -0
- package/types/System/Xml/XmlNodeChangedEventArgs.d.ts +40 -0
- package/types/System/Xml/XmlNodeChangedEventHandler.d.ts +36 -0
- package/types/System/Xml/XmlNodeList.d.ts +33 -0
- package/types/System/Xml/XmlNodeOrder.d.ts +26 -0
- package/types/System/Xml/XmlNodeType.d.ts +40 -0
- package/types/System/Xml/XmlOutputMethod.d.ts +26 -0
- package/types/System/Xml/XmlParserContext.d.ts +72 -0
- package/types/System/Xml/XmlProcessingInstruction.d.ts +54 -0
- package/types/System/Xml/XmlQualifiedName.d.ts +36 -0
- package/types/System/Xml/XmlReader.d.ts +264 -0
- package/types/System/Xml/XmlReaderSettings.d.ts +60 -0
- package/types/System/Xml/XmlResolver.d.ts +40 -0
- package/types/System/Xml/XmlSignificantWhitespace.d.ts +52 -0
- package/types/System/Xml/XmlSpace.d.ts +25 -0
- package/types/System/Xml/XmlText.d.ts +56 -0
- package/types/System/Xml/XmlTokenizedType.d.ts +35 -0
- package/types/System/Xml/XmlWhitespace.d.ts +49 -0
- package/types/System/Xml/XmlWriter.d.ts +228 -0
- package/types/System/Xml/XmlWriterSettings.d.ts +49 -0
- package/types/Vanara/PInvoke/POINT.d.ts +42 -0
- package/types/Vanara/PInvoke/PRECT.d.ts +61 -0
- package/types/Vanara/PInvoke/RECT.d.ts +58 -0
- package/types/Vanara/PInvoke/SIZE.d.ts +38 -0
- package/types/Vanara/PInvoke/User32.d.ts +242 -0
- package/enums/country.d.ts +0 -20
- package/objects/dispatcher.d.ts +0 -99
- package/objects/file.d.ts +0 -116
- package/objects/genshin.d.ts +0 -262
- package/objects/globalMethod.d.ts +0 -161
- package/objects/http.d.ts +0 -46
- package/objects/keyMouseHook.d.ts +0 -70
- package/objects/keyMouseScript.d.ts +0 -20
- package/objects/log.d.ts +0 -38
- package/objects/notification.d.ts +0 -20
- package/objects/pathingScript.d.ts +0 -27
- package/objects/settings.d.ts +0 -9
- package/types/System/Exception.d.ts +0 -9
- package/types/System/Tuple.d.ts +0 -184
- package/types/System/Windows/Forms/Keys.d.ts +0 -200
|
@@ -0,0 +1,228 @@
|
|
|
1
|
+
import type {
|
|
2
|
+
ByteHost,
|
|
3
|
+
CharHost,
|
|
4
|
+
ClrHostValue,
|
|
5
|
+
DecimalHost,
|
|
6
|
+
DoubleHost,
|
|
7
|
+
HostArray,
|
|
8
|
+
HostType,
|
|
9
|
+
Int32Host,
|
|
10
|
+
Int64Host,
|
|
11
|
+
ReferenceTypeTrait,
|
|
12
|
+
SingleHost,
|
|
13
|
+
StrongNumeric
|
|
14
|
+
} from "../../Microsoft/ClearScript/HostType";
|
|
15
|
+
import type { VoidResult } from "../../Microsoft/ClearScript/VoidResult";
|
|
16
|
+
import "../DateTime";
|
|
17
|
+
import "../DateTimeOffset";
|
|
18
|
+
import "../IAsyncDisposable";
|
|
19
|
+
import "../IDisposable";
|
|
20
|
+
import "../IO/Stream";
|
|
21
|
+
import "../IO/TextWriter";
|
|
22
|
+
import "../Text/StringBuilder";
|
|
23
|
+
import "../Threading/Tasks/ValueTask";
|
|
24
|
+
import "./WriteState";
|
|
25
|
+
import "./XPath/XPathNavigator";
|
|
26
|
+
import "./XmlReader";
|
|
27
|
+
import "./XmlSpace";
|
|
28
|
+
import "./XmlWriterSettings";
|
|
29
|
+
|
|
30
|
+
declare const xmlWriterBrand: unique symbol;
|
|
31
|
+
export interface XmlWriter
|
|
32
|
+
extends ClrHostValue, System.IDisposableInput, System.IAsyncDisposableInput {
|
|
33
|
+
readonly [xmlWriterBrand]: true;
|
|
34
|
+
close(): VoidResult;
|
|
35
|
+
dispose(): VoidResult;
|
|
36
|
+
disposeAsync(): System.Threading.Tasks.ValueTask;
|
|
37
|
+
flush(): VoidResult;
|
|
38
|
+
flushAsync(): Promise<void>;
|
|
39
|
+
lookupPrefix(ns: string): string;
|
|
40
|
+
readonly settings: System.Xml.XmlWriterSettings;
|
|
41
|
+
readonly writeState: System.Xml.WriteState;
|
|
42
|
+
readonly xmlLang: string;
|
|
43
|
+
readonly xmlSpace: System.Xml.XmlSpace;
|
|
44
|
+
writeAttributeString(localName: string, ns: string | null, value: string | null): VoidResult;
|
|
45
|
+
writeAttributeString(localName: string, value: string | null): VoidResult;
|
|
46
|
+
writeAttributeString(
|
|
47
|
+
prefix: string | null,
|
|
48
|
+
localName: string,
|
|
49
|
+
ns: string | null,
|
|
50
|
+
value: string | null
|
|
51
|
+
): VoidResult;
|
|
52
|
+
writeAttributeStringAsync(
|
|
53
|
+
prefix: string | null,
|
|
54
|
+
localName: string,
|
|
55
|
+
ns: string | null,
|
|
56
|
+
value: string | null
|
|
57
|
+
): Promise<void>;
|
|
58
|
+
writeAttributes(reader: System.Xml.XmlReader, defattr: boolean): VoidResult;
|
|
59
|
+
writeAttributesAsync(reader: System.Xml.XmlReader, defattr: boolean): Promise<void>;
|
|
60
|
+
writeBase64(
|
|
61
|
+
buffer: HostArray<number | StrongNumeric<ByteHost>>,
|
|
62
|
+
index: number | StrongNumeric<Int32Host>,
|
|
63
|
+
count: number | StrongNumeric<Int32Host>
|
|
64
|
+
): VoidResult;
|
|
65
|
+
writeBase64Async(
|
|
66
|
+
buffer: HostArray<number | StrongNumeric<ByteHost>>,
|
|
67
|
+
index: number | StrongNumeric<Int32Host>,
|
|
68
|
+
count: number | StrongNumeric<Int32Host>
|
|
69
|
+
): Promise<void>;
|
|
70
|
+
writeBinHex(
|
|
71
|
+
buffer: HostArray<number | StrongNumeric<ByteHost>>,
|
|
72
|
+
index: number | StrongNumeric<Int32Host>,
|
|
73
|
+
count: number | StrongNumeric<Int32Host>
|
|
74
|
+
): VoidResult;
|
|
75
|
+
writeBinHexAsync(
|
|
76
|
+
buffer: HostArray<number | StrongNumeric<ByteHost>>,
|
|
77
|
+
index: number | StrongNumeric<Int32Host>,
|
|
78
|
+
count: number | StrongNumeric<Int32Host>
|
|
79
|
+
): Promise<void>;
|
|
80
|
+
writeCData(text: string | null): VoidResult;
|
|
81
|
+
writeCDataAsync(text: string | null): Promise<void>;
|
|
82
|
+
writeCharEntity(ch: number | StrongNumeric<CharHost>): VoidResult;
|
|
83
|
+
writeCharEntityAsync(ch: number | StrongNumeric<CharHost>): Promise<void>;
|
|
84
|
+
writeChars(
|
|
85
|
+
buffer: HostArray<number | StrongNumeric<CharHost>>,
|
|
86
|
+
index: number | StrongNumeric<Int32Host>,
|
|
87
|
+
count: number | StrongNumeric<Int32Host>
|
|
88
|
+
): VoidResult;
|
|
89
|
+
writeCharsAsync(
|
|
90
|
+
buffer: HostArray<number | StrongNumeric<CharHost>>,
|
|
91
|
+
index: number | StrongNumeric<Int32Host>,
|
|
92
|
+
count: number | StrongNumeric<Int32Host>
|
|
93
|
+
): Promise<void>;
|
|
94
|
+
writeComment(text: string | null): VoidResult;
|
|
95
|
+
writeCommentAsync(text: string | null): Promise<void>;
|
|
96
|
+
writeDocType(
|
|
97
|
+
name: string,
|
|
98
|
+
pubid: string | null,
|
|
99
|
+
sysid: string | null,
|
|
100
|
+
subset: string | null
|
|
101
|
+
): VoidResult;
|
|
102
|
+
writeDocTypeAsync(
|
|
103
|
+
name: string,
|
|
104
|
+
pubid: string | null,
|
|
105
|
+
sysid: string | null,
|
|
106
|
+
subset: string | null
|
|
107
|
+
): Promise<void>;
|
|
108
|
+
writeElementString(localName: string, ns: string | null, value: string | null): VoidResult;
|
|
109
|
+
writeElementString(localName: string, value: string | null): VoidResult;
|
|
110
|
+
writeElementString(
|
|
111
|
+
prefix: string | null,
|
|
112
|
+
localName: string,
|
|
113
|
+
ns: string | null,
|
|
114
|
+
value: string | null
|
|
115
|
+
): VoidResult;
|
|
116
|
+
writeElementStringAsync(
|
|
117
|
+
prefix: string | null,
|
|
118
|
+
localName: string,
|
|
119
|
+
ns: string | null,
|
|
120
|
+
value: string
|
|
121
|
+
): Promise<void>;
|
|
122
|
+
writeEndAttribute(): VoidResult;
|
|
123
|
+
writeEndDocument(): VoidResult;
|
|
124
|
+
writeEndDocumentAsync(): Promise<void>;
|
|
125
|
+
writeEndElement(): VoidResult;
|
|
126
|
+
writeEndElementAsync(): Promise<void>;
|
|
127
|
+
writeEntityRef(name: string): VoidResult;
|
|
128
|
+
writeEntityRefAsync(name: string): Promise<void>;
|
|
129
|
+
writeFullEndElement(): VoidResult;
|
|
130
|
+
writeFullEndElementAsync(): Promise<void>;
|
|
131
|
+
writeName(name: string): VoidResult;
|
|
132
|
+
writeNameAsync(name: string): Promise<void>;
|
|
133
|
+
writeNmToken(name: string): VoidResult;
|
|
134
|
+
writeNmTokenAsync(name: string): Promise<void>;
|
|
135
|
+
writeNode(navigator: System.Xml.XPath.XPathNavigator, defattr: boolean): VoidResult;
|
|
136
|
+
writeNode(reader: System.Xml.XmlReader, defattr: boolean): VoidResult;
|
|
137
|
+
writeNodeAsync(navigator: System.Xml.XPath.XPathNavigator, defattr: boolean): Promise<void>;
|
|
138
|
+
writeNodeAsync(reader: System.Xml.XmlReader, defattr: boolean): Promise<void>;
|
|
139
|
+
writeProcessingInstruction(name: string, text: string | null): VoidResult;
|
|
140
|
+
writeProcessingInstructionAsync(name: string, text: string | null): Promise<void>;
|
|
141
|
+
writeQualifiedName(localName: string, ns: string | null): VoidResult;
|
|
142
|
+
writeQualifiedNameAsync(localName: string, ns: string | null): Promise<void>;
|
|
143
|
+
writeRaw(
|
|
144
|
+
buffer: HostArray<number | StrongNumeric<CharHost>>,
|
|
145
|
+
index: number | StrongNumeric<Int32Host>,
|
|
146
|
+
count: number | StrongNumeric<Int32Host>
|
|
147
|
+
): VoidResult;
|
|
148
|
+
writeRaw(data: string): VoidResult;
|
|
149
|
+
writeRawAsync(
|
|
150
|
+
buffer: HostArray<number | StrongNumeric<CharHost>>,
|
|
151
|
+
index: number | StrongNumeric<Int32Host>,
|
|
152
|
+
count: number | StrongNumeric<Int32Host>
|
|
153
|
+
): Promise<void>;
|
|
154
|
+
writeRawAsync(data: string): Promise<void>;
|
|
155
|
+
writeStartAttribute(localName: string): VoidResult;
|
|
156
|
+
writeStartAttribute(localName: string, ns: string | null): VoidResult;
|
|
157
|
+
writeStartAttribute(prefix: string | null, localName: string, ns: string | null): VoidResult;
|
|
158
|
+
writeStartDocument(): VoidResult;
|
|
159
|
+
writeStartDocument(standalone: boolean): VoidResult;
|
|
160
|
+
writeStartDocumentAsync(): Promise<void>;
|
|
161
|
+
writeStartDocumentAsync(standalone: boolean): Promise<void>;
|
|
162
|
+
writeStartElement(localName: string): VoidResult;
|
|
163
|
+
writeStartElement(localName: string, ns: string | null): VoidResult;
|
|
164
|
+
writeStartElement(prefix: string | null, localName: string, ns: string | null): VoidResult;
|
|
165
|
+
writeStartElementAsync(
|
|
166
|
+
prefix: string | null,
|
|
167
|
+
localName: string,
|
|
168
|
+
ns: string | null
|
|
169
|
+
): Promise<void>;
|
|
170
|
+
writeString(text: string | null): VoidResult;
|
|
171
|
+
writeStringAsync(text: string | null): Promise<void>;
|
|
172
|
+
writeSurrogateCharEntity(
|
|
173
|
+
lowChar: number | StrongNumeric<CharHost>,
|
|
174
|
+
highChar: number | StrongNumeric<CharHost>
|
|
175
|
+
): VoidResult;
|
|
176
|
+
writeSurrogateCharEntityAsync(
|
|
177
|
+
lowChar: number | StrongNumeric<CharHost>,
|
|
178
|
+
highChar: number | StrongNumeric<CharHost>
|
|
179
|
+
): Promise<void>;
|
|
180
|
+
writeValue(value: System.DateTime): VoidResult;
|
|
181
|
+
writeValue(value: System.DateTimeOffset): VoidResult;
|
|
182
|
+
writeValue(value: boolean): VoidResult;
|
|
183
|
+
writeValue(value: number | StrongNumeric<DecimalHost>): VoidResult;
|
|
184
|
+
writeValue(value: number | StrongNumeric<DoubleHost>): VoidResult;
|
|
185
|
+
writeValue(value: number | StrongNumeric<Int32Host>): VoidResult;
|
|
186
|
+
writeValue(value: number | StrongNumeric<Int64Host>): VoidResult;
|
|
187
|
+
writeValue(value: number | StrongNumeric<SingleHost>): VoidResult;
|
|
188
|
+
writeValue(value: string | null): VoidResult;
|
|
189
|
+
writeValue(value: unknown): VoidResult;
|
|
190
|
+
writeWhitespace(ws: string | null): VoidResult;
|
|
191
|
+
writeWhitespaceAsync(ws: string | null): Promise<void>;
|
|
192
|
+
}
|
|
193
|
+
|
|
194
|
+
declare global {
|
|
195
|
+
namespace System.Xml {
|
|
196
|
+
type XmlWriter = import("./XmlWriter").XmlWriter;
|
|
197
|
+
}
|
|
198
|
+
}
|
|
199
|
+
|
|
200
|
+
export interface XmlWriterHostType extends HostType<XmlWriter, ReferenceTypeTrait> {
|
|
201
|
+
create(outputFileName: string): System.Xml.XmlWriter;
|
|
202
|
+
create(
|
|
203
|
+
outputFileName: string,
|
|
204
|
+
settings: System.Xml.XmlWriterSettings | null
|
|
205
|
+
): System.Xml.XmlWriter;
|
|
206
|
+
create(output: System.IO.Stream): System.Xml.XmlWriter;
|
|
207
|
+
create(
|
|
208
|
+
output: System.IO.Stream,
|
|
209
|
+
settings: System.Xml.XmlWriterSettings | null
|
|
210
|
+
): System.Xml.XmlWriter;
|
|
211
|
+
create(output: System.IO.TextWriter): System.Xml.XmlWriter;
|
|
212
|
+
create(
|
|
213
|
+
output: System.IO.TextWriter,
|
|
214
|
+
settings: System.Xml.XmlWriterSettings | null
|
|
215
|
+
): System.Xml.XmlWriter;
|
|
216
|
+
create(output: System.Text.StringBuilder): System.Xml.XmlWriter;
|
|
217
|
+
create(
|
|
218
|
+
output: System.Text.StringBuilder,
|
|
219
|
+
settings: System.Xml.XmlWriterSettings | null
|
|
220
|
+
): System.Xml.XmlWriter;
|
|
221
|
+
create(output: System.Xml.XmlWriter): System.Xml.XmlWriter;
|
|
222
|
+
create(
|
|
223
|
+
output: System.Xml.XmlWriter,
|
|
224
|
+
settings: System.Xml.XmlWriterSettings | null
|
|
225
|
+
): System.Xml.XmlWriter;
|
|
226
|
+
}
|
|
227
|
+
|
|
228
|
+
export {};
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
import type {
|
|
2
|
+
ClrHostValue,
|
|
3
|
+
HostType,
|
|
4
|
+
PublicDefaultConstructorTrait,
|
|
5
|
+
ReferenceTypeTrait
|
|
6
|
+
} from "../../Microsoft/ClearScript/HostType";
|
|
7
|
+
import type { VoidResult } from "../../Microsoft/ClearScript/VoidResult";
|
|
8
|
+
import "../Text/Encoding";
|
|
9
|
+
import "./ConformanceLevel";
|
|
10
|
+
import "./NamespaceHandling";
|
|
11
|
+
import "./NewLineHandling";
|
|
12
|
+
import "./XmlOutputMethod";
|
|
13
|
+
|
|
14
|
+
declare const xmlWriterSettingsBrand: unique symbol;
|
|
15
|
+
export interface XmlWriterSettings extends ClrHostValue {
|
|
16
|
+
readonly [xmlWriterSettingsBrand]: true;
|
|
17
|
+
async: boolean;
|
|
18
|
+
checkCharacters: boolean;
|
|
19
|
+
clone(): System.Xml.XmlWriterSettings;
|
|
20
|
+
closeOutput: boolean;
|
|
21
|
+
conformanceLevel: System.Xml.ConformanceLevel;
|
|
22
|
+
doNotEscapeUriAttributes: boolean;
|
|
23
|
+
encoding: System.Text.Encoding;
|
|
24
|
+
indent: boolean;
|
|
25
|
+
indentChars: string;
|
|
26
|
+
namespaceHandling: System.Xml.NamespaceHandling;
|
|
27
|
+
newLineChars: string;
|
|
28
|
+
newLineHandling: System.Xml.NewLineHandling;
|
|
29
|
+
newLineOnAttributes: boolean;
|
|
30
|
+
omitXmlDeclaration: boolean;
|
|
31
|
+
readonly outputMethod: System.Xml.XmlOutputMethod;
|
|
32
|
+
reset(): VoidResult;
|
|
33
|
+
writeEndDocumentOnClose: boolean;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
declare global {
|
|
37
|
+
namespace System.Xml {
|
|
38
|
+
type XmlWriterSettings = import("./XmlWriterSettings").XmlWriterSettings;
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
export interface XmlWriterSettingsHostType extends HostType<
|
|
43
|
+
XmlWriterSettings,
|
|
44
|
+
ReferenceTypeTrait & PublicDefaultConstructorTrait
|
|
45
|
+
> {
|
|
46
|
+
new (): XmlWriterSettings;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
export {};
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import type {
|
|
2
|
+
ClrHostValue,
|
|
3
|
+
HostType,
|
|
4
|
+
Int32Host,
|
|
5
|
+
StrongNumeric,
|
|
6
|
+
ValueTypeTrait
|
|
7
|
+
} from "../../Microsoft/ClearScript/HostType";
|
|
8
|
+
import type { VoidResult } from "../../Microsoft/ClearScript/VoidResult";
|
|
9
|
+
import "../../System/IEquatable";
|
|
10
|
+
import "../../System/ValueType";
|
|
11
|
+
import "./SIZE";
|
|
12
|
+
|
|
13
|
+
declare const pOINTBrand: unique symbol;
|
|
14
|
+
export interface POINT extends ClrHostValue {
|
|
15
|
+
readonly [pOINTBrand]: true;
|
|
16
|
+
equals(obj: unknown | null): boolean;
|
|
17
|
+
equals(other: Vanara.PInvoke.POINT): boolean;
|
|
18
|
+
getHashCode(): number;
|
|
19
|
+
offset(dx: number | StrongNumeric<Int32Host>, dy: number | StrongNumeric<Int32Host>): VoidResult;
|
|
20
|
+
offset(p: Vanara.PInvoke.POINT): VoidResult;
|
|
21
|
+
readonly isEmpty: boolean;
|
|
22
|
+
toString(): string;
|
|
23
|
+
x: number;
|
|
24
|
+
y: number;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
declare global {
|
|
28
|
+
namespace Vanara.PInvoke {
|
|
29
|
+
type POINT = import("./POINT").POINT;
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
export interface POINTHostType extends HostType<POINT, ValueTypeTrait> {
|
|
34
|
+
new (x: number | StrongNumeric<Int32Host>, y: number | StrongNumeric<Int32Host>): POINT;
|
|
35
|
+
new (sz: Vanara.PInvoke.SIZE): POINT;
|
|
36
|
+
new (dw: number | StrongNumeric<Int32Host>): POINT;
|
|
37
|
+
readonly empty: Vanara.PInvoke.POINT;
|
|
38
|
+
add(pt: Vanara.PInvoke.POINT, sz: Vanara.PInvoke.SIZE): Vanara.PInvoke.POINT;
|
|
39
|
+
subtract(pt: Vanara.PInvoke.POINT, sz: Vanara.PInvoke.SIZE): Vanara.PInvoke.POINT;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
export {};
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
import type {
|
|
2
|
+
ClrHostValue,
|
|
3
|
+
HostType,
|
|
4
|
+
Int32Host,
|
|
5
|
+
PublicDefaultConstructorTrait,
|
|
6
|
+
ReferenceTypeTrait,
|
|
7
|
+
StrongNumeric
|
|
8
|
+
} from "../../Microsoft/ClearScript/HostType";
|
|
9
|
+
import "../../System/Drawing/Rectangle";
|
|
10
|
+
import "../../System/IEquatable";
|
|
11
|
+
import "./POINT";
|
|
12
|
+
import "./RECT";
|
|
13
|
+
import "./SIZE";
|
|
14
|
+
|
|
15
|
+
declare const pRECTBrand: unique symbol;
|
|
16
|
+
export interface PRECT
|
|
17
|
+
extends
|
|
18
|
+
ClrHostValue,
|
|
19
|
+
System.IEquatableInput<Vanara.PInvoke.RECT>,
|
|
20
|
+
System.IEquatableInput<System.Drawing.Rectangle> {
|
|
21
|
+
readonly [pRECTBrand]: true;
|
|
22
|
+
bottom: number;
|
|
23
|
+
equals(obj: unknown | null): boolean;
|
|
24
|
+
equals(r: System.Drawing.Rectangle): boolean;
|
|
25
|
+
equals(r: Vanara.PInvoke.PRECT | null): boolean;
|
|
26
|
+
equals(r: Vanara.PInvoke.RECT): boolean;
|
|
27
|
+
getHashCode(): number;
|
|
28
|
+
height: number;
|
|
29
|
+
left: number;
|
|
30
|
+
location: Vanara.PInvoke.POINT;
|
|
31
|
+
readonly isEmpty: boolean;
|
|
32
|
+
right: number;
|
|
33
|
+
size: Vanara.PInvoke.SIZE;
|
|
34
|
+
toString(): string;
|
|
35
|
+
top: number;
|
|
36
|
+
width: number;
|
|
37
|
+
x: number;
|
|
38
|
+
y: number;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
declare global {
|
|
42
|
+
namespace Vanara.PInvoke {
|
|
43
|
+
type PRECT = import("./PRECT").PRECT;
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
export interface PRECTHostType extends HostType<
|
|
48
|
+
PRECT,
|
|
49
|
+
ReferenceTypeTrait & PublicDefaultConstructorTrait
|
|
50
|
+
> {
|
|
51
|
+
new (): PRECT;
|
|
52
|
+
new (
|
|
53
|
+
left: number | StrongNumeric<Int32Host>,
|
|
54
|
+
top: number | StrongNumeric<Int32Host>,
|
|
55
|
+
right: number | StrongNumeric<Int32Host>,
|
|
56
|
+
bottom: number | StrongNumeric<Int32Host>
|
|
57
|
+
): PRECT;
|
|
58
|
+
new (r: System.Drawing.Rectangle): PRECT;
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
export {};
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
import type {
|
|
2
|
+
ClrHostValue,
|
|
3
|
+
HostType,
|
|
4
|
+
Int32Host,
|
|
5
|
+
StrongNumeric,
|
|
6
|
+
ValueTypeTrait
|
|
7
|
+
} from "../../Microsoft/ClearScript/HostType";
|
|
8
|
+
import "../../System/Drawing/Rectangle";
|
|
9
|
+
import "../../System/IEquatable";
|
|
10
|
+
import "../../System/ValueType";
|
|
11
|
+
import "./POINT";
|
|
12
|
+
import "./PRECT";
|
|
13
|
+
import "./SIZE";
|
|
14
|
+
|
|
15
|
+
declare const rECTBrand: unique symbol;
|
|
16
|
+
export interface RECT
|
|
17
|
+
extends
|
|
18
|
+
ClrHostValue,
|
|
19
|
+
System.IEquatableInput<Vanara.PInvoke.PRECT>,
|
|
20
|
+
System.IEquatableInput<System.Drawing.Rectangle> {
|
|
21
|
+
readonly [rECTBrand]: true;
|
|
22
|
+
bottom: number;
|
|
23
|
+
equals(obj: unknown | null): boolean;
|
|
24
|
+
equals(r: System.Drawing.Rectangle): boolean;
|
|
25
|
+
equals(r: Vanara.PInvoke.PRECT | null): boolean;
|
|
26
|
+
equals(r: Vanara.PInvoke.RECT): boolean;
|
|
27
|
+
getHashCode(): number;
|
|
28
|
+
height: number;
|
|
29
|
+
left: number;
|
|
30
|
+
location: Vanara.PInvoke.POINT;
|
|
31
|
+
readonly isEmpty: boolean;
|
|
32
|
+
right: number;
|
|
33
|
+
size: Vanara.PInvoke.SIZE;
|
|
34
|
+
toString(): string;
|
|
35
|
+
top: number;
|
|
36
|
+
width: number;
|
|
37
|
+
x: number;
|
|
38
|
+
y: number;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
declare global {
|
|
42
|
+
namespace Vanara.PInvoke {
|
|
43
|
+
type RECT = import("./RECT").RECT;
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
export interface RECTHostType extends HostType<RECT, ValueTypeTrait> {
|
|
48
|
+
new (
|
|
49
|
+
left: number | StrongNumeric<Int32Host>,
|
|
50
|
+
top: number | StrongNumeric<Int32Host>,
|
|
51
|
+
right: number | StrongNumeric<Int32Host>,
|
|
52
|
+
bottom: number | StrongNumeric<Int32Host>
|
|
53
|
+
): RECT;
|
|
54
|
+
new (r: System.Drawing.Rectangle): RECT;
|
|
55
|
+
readonly empty: Vanara.PInvoke.RECT;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
export {};
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import type {
|
|
2
|
+
ClrHostValue,
|
|
3
|
+
HostType,
|
|
4
|
+
Int32Host,
|
|
5
|
+
StrongNumeric,
|
|
6
|
+
ValueTypeTrait
|
|
7
|
+
} from "../../Microsoft/ClearScript/HostType";
|
|
8
|
+
import "../../System/Drawing/Size";
|
|
9
|
+
import "../../System/IEquatable";
|
|
10
|
+
import "../../System/ValueType";
|
|
11
|
+
|
|
12
|
+
declare const sIZEBrand: unique symbol;
|
|
13
|
+
export interface SIZE extends ClrHostValue {
|
|
14
|
+
readonly [sIZEBrand]: true;
|
|
15
|
+
cx: number;
|
|
16
|
+
cy: number;
|
|
17
|
+
equals(obj: unknown | null): boolean;
|
|
18
|
+
equals(other: Vanara.PInvoke.SIZE): boolean;
|
|
19
|
+
getHashCode(): number;
|
|
20
|
+
height: number;
|
|
21
|
+
readonly isEmpty: boolean;
|
|
22
|
+
toSize(): System.Drawing.Size;
|
|
23
|
+
toString(): string;
|
|
24
|
+
width: number;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
declare global {
|
|
28
|
+
namespace Vanara.PInvoke {
|
|
29
|
+
type SIZE = import("./SIZE").SIZE;
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
export interface SIZEHostType extends HostType<SIZE, ValueTypeTrait> {
|
|
34
|
+
new (width: number | StrongNumeric<Int32Host>, height: number | StrongNumeric<Int32Host>): SIZE;
|
|
35
|
+
readonly empty: Vanara.PInvoke.SIZE;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
export {};
|