brighterscript 1.0.0-alpha.23 → 1.0.0-alpha.25
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/CHANGELOG.md +585 -218
- package/README.md +45 -139
- package/bsconfig.schema.json +41 -0
- package/dist/ActionPipeline.d.ts +10 -0
- package/dist/ActionPipeline.js +40 -0
- package/dist/ActionPipeline.js.map +1 -0
- package/dist/AstValidationSegmenter.d.ts +25 -0
- package/dist/AstValidationSegmenter.js +152 -0
- package/dist/AstValidationSegmenter.js.map +1 -0
- package/dist/BsConfig.d.ts +39 -4
- package/dist/BusyStatusTracker.d.ts +31 -0
- package/dist/BusyStatusTracker.js +83 -0
- package/dist/BusyStatusTracker.js.map +1 -0
- package/dist/Cache.js +3 -3
- package/dist/Cache.js.map +1 -1
- package/dist/CacheVerifier.d.ts +7 -0
- package/dist/CacheVerifier.js +20 -0
- package/dist/CacheVerifier.js.map +1 -0
- package/dist/CodeActionUtil.d.ts +3 -3
- package/dist/CodeActionUtil.js.map +1 -1
- package/dist/CommentFlagProcessor.d.ts +3 -2
- package/dist/CommentFlagProcessor.js +5 -4
- package/dist/CommentFlagProcessor.js.map +1 -1
- package/dist/DependencyGraph.d.ts +3 -2
- package/dist/DependencyGraph.js +11 -10
- package/dist/DependencyGraph.js.map +1 -1
- package/dist/DiagnosticCollection.js +9 -5
- package/dist/DiagnosticCollection.js.map +1 -1
- package/dist/DiagnosticFilterer.d.ts +1 -0
- package/dist/DiagnosticFilterer.js +5 -3
- package/dist/DiagnosticFilterer.js.map +1 -1
- package/dist/DiagnosticMessages.d.ts +79 -15
- package/dist/DiagnosticMessages.js +134 -21
- package/dist/DiagnosticMessages.js.map +1 -1
- package/dist/DiagnosticSeverityAdjuster.d.ts +7 -0
- package/dist/DiagnosticSeverityAdjuster.js +41 -0
- package/dist/DiagnosticSeverityAdjuster.js.map +1 -0
- package/dist/FunctionScope.d.ts +28 -0
- package/dist/FunctionScope.js +52 -0
- package/dist/FunctionScope.js.map +1 -0
- package/dist/KeyedThrottler.d.ts +3 -3
- package/dist/KeyedThrottler.js +3 -3
- package/dist/KeyedThrottler.js.map +1 -1
- package/dist/LanguageServer.d.ts +23 -11
- package/dist/LanguageServer.js +222 -87
- package/dist/LanguageServer.js.map +1 -1
- package/dist/Logger.d.ts +3 -2
- package/dist/Logger.js +11 -3
- package/dist/Logger.js.map +1 -1
- package/dist/PluginInterface.d.ts +21 -3
- package/dist/PluginInterface.js +74 -6
- package/dist/PluginInterface.js.map +1 -1
- package/dist/Program.d.ts +162 -81
- package/dist/Program.js +903 -732
- package/dist/Program.js.map +1 -1
- package/dist/ProgramBuilder.d.ts +22 -12
- package/dist/ProgramBuilder.js +132 -104
- package/dist/ProgramBuilder.js.map +1 -1
- package/dist/Scope.d.ts +95 -134
- package/dist/Scope.js +477 -551
- package/dist/Scope.js.map +1 -1
- package/dist/Stopwatch.js +1 -1
- package/dist/Stopwatch.js.map +1 -1
- package/dist/SymbolTable.d.ts +95 -29
- package/dist/SymbolTable.js +256 -102
- package/dist/SymbolTable.js.map +1 -1
- package/dist/Throttler.d.ts +12 -0
- package/dist/Throttler.js +39 -0
- package/dist/Throttler.js.map +1 -1
- package/dist/Watcher.d.ts +0 -3
- package/dist/Watcher.js +0 -3
- package/dist/Watcher.js.map +1 -1
- package/dist/XmlScope.d.ts +4 -6
- package/dist/XmlScope.js +74 -68
- package/dist/XmlScope.js.map +1 -1
- package/dist/astUtils/CachedLookups.d.ts +48 -0
- package/dist/astUtils/CachedLookups.js +323 -0
- package/dist/astUtils/CachedLookups.js.map +1 -0
- package/dist/astUtils/{AstEditor.d.ts → Editor.d.ts} +9 -5
- package/dist/astUtils/{AstEditor.js → Editor.js} +10 -4
- package/dist/astUtils/Editor.js.map +1 -0
- package/dist/astUtils/{AstEditor.spec.js → Editor.spec.js} +68 -64
- package/dist/astUtils/Editor.spec.js.map +1 -0
- package/dist/astUtils/creators.d.ts +10 -10
- package/dist/astUtils/creators.js +26 -16
- package/dist/astUtils/creators.js.map +1 -1
- package/dist/astUtils/creators.spec.js +5 -5
- package/dist/astUtils/creators.spec.js.map +1 -1
- package/dist/astUtils/reflection.d.ts +132 -100
- package/dist/astUtils/reflection.js +225 -166
- package/dist/astUtils/reflection.js.map +1 -1
- package/dist/astUtils/reflection.spec.js +208 -126
- package/dist/astUtils/reflection.spec.js.map +1 -1
- package/dist/astUtils/stackedVisitor.spec.js +12 -12
- package/dist/astUtils/stackedVisitor.spec.js.map +1 -1
- package/dist/astUtils/visitors.d.ts +54 -35
- package/dist/astUtils/visitors.js +29 -3
- package/dist/astUtils/visitors.js.map +1 -1
- package/dist/astUtils/visitors.spec.js +178 -33
- package/dist/astUtils/visitors.spec.js.map +1 -1
- package/dist/astUtils/xml.d.ts +9 -9
- package/dist/astUtils/xml.js +9 -9
- package/dist/astUtils/xml.js.map +1 -1
- package/dist/bscPlugin/BscPlugin.d.ts +12 -2
- package/dist/bscPlugin/BscPlugin.js +41 -3
- package/dist/bscPlugin/BscPlugin.js.map +1 -1
- package/dist/bscPlugin/CallExpressionInfo.d.ts +36 -0
- package/dist/bscPlugin/CallExpressionInfo.js +131 -0
- package/dist/bscPlugin/CallExpressionInfo.js.map +1 -0
- package/dist/bscPlugin/FileWriter.d.ts +6 -0
- package/dist/bscPlugin/FileWriter.js +24 -0
- package/dist/bscPlugin/FileWriter.js.map +1 -0
- package/dist/bscPlugin/SignatureHelpUtil.d.ts +10 -0
- package/dist/bscPlugin/SignatureHelpUtil.js +135 -0
- package/dist/bscPlugin/SignatureHelpUtil.js.map +1 -0
- package/dist/bscPlugin/codeActions/CodeActionsProcessor.d.ts +1 -1
- package/dist/bscPlugin/codeActions/CodeActionsProcessor.js +21 -12
- package/dist/bscPlugin/codeActions/CodeActionsProcessor.js.map +1 -1
- package/dist/bscPlugin/codeActions/CodeActionsProcessor.spec.js +86 -12
- package/dist/bscPlugin/codeActions/CodeActionsProcessor.spec.js.map +1 -1
- package/dist/bscPlugin/completions/CompletionsProcessor.d.ts +57 -0
- package/dist/bscPlugin/completions/CompletionsProcessor.js +544 -0
- package/dist/bscPlugin/completions/CompletionsProcessor.js.map +1 -0
- package/dist/bscPlugin/completions/CompletionsProcessor.spec.js +1909 -0
- package/dist/bscPlugin/completions/CompletionsProcessor.spec.js.map +1 -0
- package/dist/bscPlugin/fileProviders/FileProvider.d.ts +9 -0
- package/dist/bscPlugin/fileProviders/FileProvider.js +51 -0
- package/dist/bscPlugin/fileProviders/FileProvider.js.map +1 -0
- package/dist/bscPlugin/hover/HoverProcessor.d.ts +17 -0
- package/dist/bscPlugin/hover/HoverProcessor.js +188 -0
- package/dist/bscPlugin/hover/HoverProcessor.js.map +1 -0
- package/dist/bscPlugin/hover/HoverProcessor.spec.js +513 -0
- package/dist/bscPlugin/hover/HoverProcessor.spec.js.map +1 -0
- package/dist/bscPlugin/semanticTokens/BrsFileSemanticTokensProcessor.d.ts +3 -1
- package/dist/bscPlugin/semanticTokens/BrsFileSemanticTokensProcessor.js +102 -29
- package/dist/bscPlugin/semanticTokens/BrsFileSemanticTokensProcessor.js.map +1 -1
- package/dist/bscPlugin/semanticTokens/BrsFileSemanticTokensProcessor.spec.js +167 -6
- package/dist/bscPlugin/semanticTokens/BrsFileSemanticTokensProcessor.spec.js.map +1 -1
- package/dist/bscPlugin/serialize/BslibInjector.spec.d.ts +1 -0
- package/dist/bscPlugin/serialize/BslibInjector.spec.js +19 -0
- package/dist/bscPlugin/serialize/BslibInjector.spec.js.map +1 -0
- package/dist/bscPlugin/serialize/BslibManager.d.ts +9 -0
- package/dist/bscPlugin/serialize/BslibManager.js +40 -0
- package/dist/bscPlugin/serialize/BslibManager.js.map +1 -0
- package/dist/bscPlugin/serialize/FileSerializer.d.ts +9 -0
- package/dist/bscPlugin/serialize/FileSerializer.js +72 -0
- package/dist/bscPlugin/serialize/FileSerializer.js.map +1 -0
- package/dist/bscPlugin/transpile/BrsFileTranspileProcessor.d.ts +16 -0
- package/dist/bscPlugin/transpile/BrsFileTranspileProcessor.js +123 -0
- package/dist/bscPlugin/transpile/BrsFileTranspileProcessor.js.map +1 -0
- package/dist/bscPlugin/transpile/BrsFileTranspileProcessor.spec.d.ts +1 -0
- package/dist/bscPlugin/transpile/BrsFileTranspileProcessor.spec.js +41 -0
- package/dist/bscPlugin/transpile/BrsFileTranspileProcessor.spec.js.map +1 -0
- package/dist/bscPlugin/transpile/XmlFilePreTranspileProcessor.d.ts +12 -0
- package/dist/bscPlugin/transpile/XmlFilePreTranspileProcessor.js +99 -0
- package/dist/bscPlugin/transpile/XmlFilePreTranspileProcessor.js.map +1 -0
- package/dist/bscPlugin/validation/BrsFileValidator.d.ts +22 -1
- package/dist/bscPlugin/validation/BrsFileValidator.js +316 -29
- package/dist/bscPlugin/validation/BrsFileValidator.js.map +1 -1
- package/dist/bscPlugin/validation/BrsFileValidator.spec.d.ts +1 -0
- package/dist/bscPlugin/validation/BrsFileValidator.spec.js +264 -0
- package/dist/bscPlugin/validation/BrsFileValidator.spec.js.map +1 -0
- package/dist/bscPlugin/validation/ProgramValidator.d.ts +10 -0
- package/dist/bscPlugin/validation/ProgramValidator.js +32 -0
- package/dist/bscPlugin/validation/ProgramValidator.js.map +1 -0
- package/dist/bscPlugin/validation/ScopeValidator.d.ts +56 -8
- package/dist/bscPlugin/validation/ScopeValidator.js +514 -116
- package/dist/bscPlugin/validation/ScopeValidator.js.map +1 -1
- package/dist/bscPlugin/validation/ScopeValidator.spec.d.ts +1 -0
- package/dist/bscPlugin/validation/ScopeValidator.spec.js +2454 -0
- package/dist/bscPlugin/validation/ScopeValidator.spec.js.map +1 -0
- package/dist/bscPlugin/validation/XmlFileValidator.d.ts +8 -0
- package/dist/bscPlugin/validation/XmlFileValidator.js +44 -0
- package/dist/bscPlugin/validation/XmlFileValidator.js.map +1 -0
- package/dist/cli.js +107 -8
- package/dist/cli.js.map +1 -1
- package/dist/deferred.d.ts +3 -3
- package/dist/deferred.js.map +1 -1
- package/dist/diagnosticUtils.d.ts +8 -2
- package/dist/diagnosticUtils.js +47 -17
- package/dist/diagnosticUtils.js.map +1 -1
- package/dist/examples/plugins/removePrint.js +8 -10
- package/dist/examples/plugins/removePrint.js.map +1 -1
- package/dist/files/AssetFile.d.ts +26 -0
- package/dist/files/AssetFile.js +26 -0
- package/dist/files/AssetFile.js.map +1 -0
- package/dist/files/BrsFile.Class.spec.js +529 -486
- package/dist/files/BrsFile.Class.spec.js.map +1 -1
- package/dist/files/BrsFile.d.ts +124 -112
- package/dist/files/BrsFile.js +819 -1131
- package/dist/files/BrsFile.js.map +1 -1
- package/dist/files/BrsFile.spec.js +1869 -1277
- package/dist/files/BrsFile.spec.js.map +1 -1
- package/dist/files/BscFile.d.ts +104 -0
- package/dist/files/BscFile.js +16 -0
- package/dist/files/BscFile.js.map +1 -0
- package/dist/files/Factory.d.ts +25 -0
- package/dist/files/Factory.js +22 -0
- package/dist/files/Factory.js.map +1 -0
- package/dist/files/LazyFileData.d.ts +20 -0
- package/dist/files/LazyFileData.js +54 -0
- package/dist/files/LazyFileData.js.map +1 -0
- package/dist/files/LazyFileData.spec.d.ts +1 -0
- package/dist/files/LazyFileData.spec.js +27 -0
- package/dist/files/LazyFileData.spec.js.map +1 -0
- package/dist/files/XmlFile.d.ts +70 -32
- package/dist/files/XmlFile.js +106 -117
- package/dist/files/XmlFile.js.map +1 -1
- package/dist/files/XmlFile.spec.js +325 -262
- package/dist/files/XmlFile.spec.js.map +1 -1
- package/dist/files/tests/imports.spec.js +49 -41
- package/dist/files/tests/imports.spec.js.map +1 -1
- package/dist/files/tests/optionalChaning.spec.js +104 -40
- package/dist/files/tests/optionalChaning.spec.js.map +1 -1
- package/dist/globalCallables.js +16 -18
- package/dist/globalCallables.js.map +1 -1
- package/dist/index.d.ts +13 -2
- package/dist/index.js +15 -2
- package/dist/index.js.map +1 -1
- package/dist/interfaces.d.ts +440 -150
- package/dist/interfaces.js +27 -0
- package/dist/interfaces.js.map +1 -1
- package/dist/lexer/Character.spec.js +5 -5
- package/dist/lexer/Character.spec.js.map +1 -1
- package/dist/lexer/Lexer.d.ts +12 -5
- package/dist/lexer/Lexer.js +28 -13
- package/dist/lexer/Lexer.js.map +1 -1
- package/dist/lexer/Lexer.spec.js +187 -134
- package/dist/lexer/Lexer.spec.js.map +1 -1
- package/dist/lexer/Token.d.ts +9 -1
- package/dist/lexer/Token.js +9 -1
- package/dist/lexer/Token.js.map +1 -1
- package/dist/lexer/TokenKind.d.ts +9 -0
- package/dist/lexer/TokenKind.js +30 -5
- package/dist/lexer/TokenKind.js.map +1 -1
- package/dist/parser/AstNode.d.ts +162 -0
- package/dist/parser/AstNode.js +225 -0
- package/dist/parser/AstNode.js.map +1 -0
- package/dist/parser/AstNode.spec.d.ts +1 -0
- package/dist/parser/AstNode.spec.js +165 -0
- package/dist/parser/AstNode.spec.js.map +1 -0
- package/dist/parser/BrsTranspileState.d.ts +4 -7
- package/dist/parser/BrsTranspileState.js +4 -12
- package/dist/parser/BrsTranspileState.js.map +1 -1
- package/dist/parser/Expression.d.ts +126 -167
- package/dist/parser/Expression.js +524 -394
- package/dist/parser/Expression.js.map +1 -1
- package/dist/parser/Parser.Class.spec.js +152 -146
- package/dist/parser/Parser.Class.spec.js.map +1 -1
- package/dist/parser/Parser.d.ts +45 -196
- package/dist/parser/Parser.js +470 -926
- package/dist/parser/Parser.js.map +1 -1
- package/dist/parser/Parser.spec.d.ts +3 -1
- package/dist/parser/Parser.spec.js +1034 -805
- package/dist/parser/Parser.spec.js.map +1 -1
- package/dist/parser/SGParser.d.ts +9 -8
- package/dist/parser/SGParser.js +10 -8
- package/dist/parser/SGParser.js.map +1 -1
- package/dist/parser/SGParser.spec.js +27 -38
- package/dist/parser/SGParser.spec.js.map +1 -1
- package/dist/parser/SGTypes.d.ts +98 -35
- package/dist/parser/SGTypes.js +169 -99
- package/dist/parser/SGTypes.js.map +1 -1
- package/dist/parser/Statement.d.ts +208 -122
- package/dist/parser/Statement.js +599 -364
- package/dist/parser/Statement.js.map +1 -1
- package/dist/parser/Statement.spec.js +45 -21
- package/dist/parser/Statement.spec.js.map +1 -1
- package/dist/parser/TranspileState.d.ts +1 -1
- package/dist/parser/TranspileState.js +7 -12
- package/dist/parser/TranspileState.js.map +1 -1
- package/dist/parser/tests/Parser.spec.js +3 -2
- package/dist/parser/tests/Parser.spec.js.map +1 -1
- package/dist/parser/tests/controlFlow/For.spec.js +33 -23
- package/dist/parser/tests/controlFlow/For.spec.js.map +1 -1
- package/dist/parser/tests/controlFlow/ForEach.spec.js +25 -20
- package/dist/parser/tests/controlFlow/ForEach.spec.js.map +1 -1
- package/dist/parser/tests/controlFlow/If.spec.js +96 -94
- package/dist/parser/tests/controlFlow/If.spec.js.map +1 -1
- package/dist/parser/tests/controlFlow/While.spec.js +22 -16
- package/dist/parser/tests/controlFlow/While.spec.js.map +1 -1
- package/dist/parser/tests/expression/Additive.spec.js +8 -8
- package/dist/parser/tests/expression/Additive.spec.js.map +1 -1
- package/dist/parser/tests/expression/ArrayLiterals.spec.js +58 -21
- package/dist/parser/tests/expression/ArrayLiterals.spec.js.map +1 -1
- package/dist/parser/tests/expression/AssociativeArrayLiterals.spec.js +61 -20
- package/dist/parser/tests/expression/AssociativeArrayLiterals.spec.js.map +1 -1
- package/dist/parser/tests/expression/Boolean.spec.js +8 -8
- package/dist/parser/tests/expression/Boolean.spec.js.map +1 -1
- package/dist/parser/tests/expression/Call.spec.js +129 -21
- package/dist/parser/tests/expression/Call.spec.js.map +1 -1
- package/dist/parser/tests/expression/Exponential.spec.js +5 -5
- package/dist/parser/tests/expression/Exponential.spec.js.map +1 -1
- package/dist/parser/tests/expression/Function.spec.js +36 -36
- package/dist/parser/tests/expression/Function.spec.js.map +1 -1
- package/dist/parser/tests/expression/Indexing.spec.js +67 -22
- package/dist/parser/tests/expression/Indexing.spec.js.map +1 -1
- package/dist/parser/tests/expression/Multiplicative.spec.js +9 -9
- package/dist/parser/tests/expression/Multiplicative.spec.js.map +1 -1
- package/dist/parser/tests/expression/NullCoalescenceExpression.spec.js +123 -81
- package/dist/parser/tests/expression/NullCoalescenceExpression.spec.js.map +1 -1
- package/dist/parser/tests/expression/PrefixUnary.spec.js +12 -12
- package/dist/parser/tests/expression/PrefixUnary.spec.js.map +1 -1
- package/dist/parser/tests/expression/Primary.spec.js +12 -12
- package/dist/parser/tests/expression/Primary.spec.js.map +1 -1
- package/dist/parser/tests/expression/RegexLiteralExpression.spec.js +10 -10
- package/dist/parser/tests/expression/RegexLiteralExpression.spec.js.map +1 -1
- package/dist/parser/tests/expression/Relational.spec.js +13 -13
- package/dist/parser/tests/expression/Relational.spec.js.map +1 -1
- package/dist/parser/tests/expression/SourceLiteralExpression.spec.js +24 -24
- package/dist/parser/tests/expression/SourceLiteralExpression.spec.js.map +1 -1
- package/dist/parser/tests/expression/TemplateStringExpression.spec.js +221 -81
- package/dist/parser/tests/expression/TemplateStringExpression.spec.js.map +1 -1
- package/dist/parser/tests/expression/TernaryExpression.spec.js +287 -105
- package/dist/parser/tests/expression/TernaryExpression.spec.js.map +1 -1
- package/dist/parser/tests/expression/TypeExpression.spec.d.ts +1 -0
- package/dist/parser/tests/expression/TypeExpression.spec.js +127 -0
- package/dist/parser/tests/expression/TypeExpression.spec.js.map +1 -0
- package/dist/parser/tests/expression/UnaryExpression.spec.d.ts +1 -0
- package/dist/parser/tests/expression/UnaryExpression.spec.js +52 -0
- package/dist/parser/tests/expression/UnaryExpression.spec.js.map +1 -0
- package/dist/parser/tests/statement/AssignmentOperators.spec.js +15 -15
- package/dist/parser/tests/statement/AssignmentOperators.spec.js.map +1 -1
- package/dist/parser/tests/statement/ConstStatement.spec.d.ts +1 -0
- package/dist/parser/tests/statement/ConstStatement.spec.js +262 -0
- package/dist/parser/tests/statement/ConstStatement.spec.js.map +1 -0
- package/dist/parser/tests/statement/Continue.spec.d.ts +1 -0
- package/dist/parser/tests/statement/Continue.spec.js +119 -0
- package/dist/parser/tests/statement/Continue.spec.js.map +1 -0
- package/dist/parser/tests/statement/Declaration.spec.js +19 -19
- package/dist/parser/tests/statement/Declaration.spec.js.map +1 -1
- package/dist/parser/tests/statement/Dim.spec.js +22 -22
- package/dist/parser/tests/statement/Dim.spec.js.map +1 -1
- package/dist/parser/tests/statement/Enum.spec.js +111 -300
- package/dist/parser/tests/statement/Enum.spec.js.map +1 -1
- package/dist/parser/tests/statement/For.spec.js +9 -10
- package/dist/parser/tests/statement/For.spec.js.map +1 -1
- package/dist/parser/tests/statement/ForEach.spec.js +8 -9
- package/dist/parser/tests/statement/ForEach.spec.js.map +1 -1
- package/dist/parser/tests/statement/Function.spec.js +44 -35
- package/dist/parser/tests/statement/Function.spec.js.map +1 -1
- package/dist/parser/tests/statement/Goto.spec.js +5 -5
- package/dist/parser/tests/statement/Goto.spec.js.map +1 -1
- package/dist/parser/tests/statement/Increment.spec.js +20 -20
- package/dist/parser/tests/statement/Increment.spec.js.map +1 -1
- package/dist/parser/tests/statement/InterfaceStatement.spec.js +30 -196
- package/dist/parser/tests/statement/InterfaceStatement.spec.js.map +1 -1
- package/dist/parser/tests/statement/LibraryStatement.spec.js +11 -11
- package/dist/parser/tests/statement/LibraryStatement.spec.js.map +1 -1
- package/dist/parser/tests/statement/Misc.spec.js +16 -78
- package/dist/parser/tests/statement/Misc.spec.js.map +1 -1
- package/dist/parser/tests/statement/PrintStatement.spec.js +107 -90
- package/dist/parser/tests/statement/PrintStatement.spec.js.map +1 -1
- package/dist/parser/tests/statement/ReturnStatement.spec.js +14 -12
- package/dist/parser/tests/statement/ReturnStatement.spec.js.map +1 -1
- package/dist/parser/tests/statement/Set.spec.js +48 -35
- package/dist/parser/tests/statement/Set.spec.js.map +1 -1
- package/dist/parser/tests/statement/Stop.spec.js +6 -6
- package/dist/parser/tests/statement/Stop.spec.js.map +1 -1
- package/dist/parser/tests/statement/Throw.spec.js +6 -6
- package/dist/parser/tests/statement/Throw.spec.js.map +1 -1
- package/dist/parser/tests/statement/TryCatch.spec.js +18 -16
- package/dist/parser/tests/statement/TryCatch.spec.js.map +1 -1
- package/dist/preprocessor/Manifest.d.ts +1 -1
- package/dist/preprocessor/Manifest.js +3 -3
- package/dist/preprocessor/Manifest.js.map +1 -1
- package/dist/preprocessor/Manifest.spec.js +8 -8
- package/dist/preprocessor/Manifest.spec.js.map +1 -1
- package/dist/preprocessor/Preprocessor.d.ts +5 -6
- package/dist/preprocessor/Preprocessor.js +15 -11
- package/dist/preprocessor/Preprocessor.js.map +1 -1
- package/dist/preprocessor/Preprocessor.spec.js +25 -25
- package/dist/preprocessor/Preprocessor.spec.js.map +1 -1
- package/dist/preprocessor/PreprocessorParser.d.ts +1 -1
- package/dist/preprocessor/PreprocessorParser.js +7 -1
- package/dist/preprocessor/PreprocessorParser.js.map +1 -1
- package/dist/preprocessor/PreprocessorParser.spec.js +13 -13
- package/dist/preprocessor/PreprocessorParser.spec.js.map +1 -1
- package/dist/roku-types/data.json +6544 -10519
- package/dist/roku-types/index.d.ts +662 -1934
- package/dist/types/ArrayType.d.ts +10 -9
- package/dist/types/ArrayType.js +65 -60
- package/dist/types/ArrayType.js.map +1 -1
- package/dist/types/ArrayType.spec.js +36 -68
- package/dist/types/ArrayType.spec.js.map +1 -1
- package/dist/types/AssociativeArrayType.d.ts +11 -0
- package/dist/types/AssociativeArrayType.js +52 -0
- package/dist/types/AssociativeArrayType.js.map +1 -0
- package/dist/types/BaseFunctionType.d.ts +9 -0
- package/dist/types/BaseFunctionType.js +25 -0
- package/dist/types/BaseFunctionType.js.map +1 -0
- package/dist/types/BooleanType.d.ts +8 -5
- package/dist/types/BooleanType.js +14 -7
- package/dist/types/BooleanType.js.map +1 -1
- package/dist/types/BooleanType.spec.js +10 -6
- package/dist/types/BooleanType.spec.js.map +1 -1
- package/dist/types/BscType.d.ts +32 -21
- package/dist/types/BscType.js +118 -21
- package/dist/types/BscType.js.map +1 -1
- package/dist/types/BscTypeKind.d.ts +25 -0
- package/dist/types/BscTypeKind.js +30 -0
- package/dist/types/BscTypeKind.js.map +1 -0
- package/dist/types/BuiltInInterfaceAdder.d.ts +23 -0
- package/dist/types/BuiltInInterfaceAdder.js +164 -0
- package/dist/types/BuiltInInterfaceAdder.js.map +1 -0
- package/dist/types/BuiltInInterfaceAdder.spec.d.ts +1 -0
- package/dist/types/BuiltInInterfaceAdder.spec.js +116 -0
- package/dist/types/BuiltInInterfaceAdder.spec.js.map +1 -0
- package/dist/types/ClassType.d.ts +17 -0
- package/dist/types/ClassType.js +58 -0
- package/dist/types/ClassType.js.map +1 -0
- package/dist/types/ClassType.spec.d.ts +1 -0
- package/dist/types/ClassType.spec.js +77 -0
- package/dist/types/ClassType.spec.js.map +1 -0
- package/dist/types/ComponentType.d.ts +26 -0
- package/dist/types/ComponentType.js +83 -0
- package/dist/types/ComponentType.js.map +1 -0
- package/dist/types/DoubleType.d.ts +8 -5
- package/dist/types/DoubleType.js +18 -16
- package/dist/types/DoubleType.js.map +1 -1
- package/dist/types/DoubleType.spec.js +12 -6
- package/dist/types/DoubleType.spec.js.map +1 -1
- package/dist/types/DynamicType.d.ts +10 -5
- package/dist/types/DynamicType.js +16 -4
- package/dist/types/DynamicType.js.map +1 -1
- package/dist/types/DynamicType.spec.js +16 -5
- package/dist/types/DynamicType.spec.js.map +1 -1
- package/dist/types/EnumType.d.ts +30 -12
- package/dist/types/EnumType.js +43 -17
- package/dist/types/EnumType.js.map +1 -1
- package/dist/types/EnumType.spec.d.ts +1 -0
- package/dist/types/EnumType.spec.js +33 -0
- package/dist/types/EnumType.spec.js.map +1 -0
- package/dist/types/FloatType.d.ts +8 -5
- package/dist/types/FloatType.js +18 -16
- package/dist/types/FloatType.js.map +1 -1
- package/dist/types/FloatType.spec.js +4 -6
- package/dist/types/FloatType.spec.js.map +1 -1
- package/dist/types/FunctionType.d.ts +13 -8
- package/dist/types/FunctionType.js +30 -14
- package/dist/types/FunctionType.js.map +1 -1
- package/dist/types/InheritableType.d.ts +28 -0
- package/dist/types/InheritableType.js +152 -0
- package/dist/types/InheritableType.js.map +1 -0
- package/dist/types/IntegerType.d.ts +8 -5
- package/dist/types/IntegerType.js +18 -16
- package/dist/types/IntegerType.js.map +1 -1
- package/dist/types/IntegerType.spec.js +8 -6
- package/dist/types/IntegerType.spec.js.map +1 -1
- package/dist/types/InterfaceType.d.ts +12 -13
- package/dist/types/InterfaceType.js +20 -48
- package/dist/types/InterfaceType.js.map +1 -1
- package/dist/types/InterfaceType.spec.js +90 -56
- package/dist/types/InterfaceType.spec.js.map +1 -1
- package/dist/types/InvalidType.d.ts +7 -5
- package/dist/types/InvalidType.js +13 -7
- package/dist/types/InvalidType.js.map +1 -1
- package/dist/types/InvalidType.spec.js +8 -6
- package/dist/types/InvalidType.spec.js.map +1 -1
- package/dist/types/LongIntegerType.d.ts +8 -5
- package/dist/types/LongIntegerType.js +17 -15
- package/dist/types/LongIntegerType.js.map +1 -1
- package/dist/types/LongIntegerType.spec.js +10 -6
- package/dist/types/LongIntegerType.spec.js.map +1 -1
- package/dist/types/NamespaceType.d.ts +12 -0
- package/dist/types/NamespaceType.js +28 -0
- package/dist/types/NamespaceType.js.map +1 -0
- package/dist/types/ObjectType.d.ts +9 -8
- package/dist/types/ObjectType.js +21 -11
- package/dist/types/ObjectType.js.map +1 -1
- package/dist/types/ObjectType.spec.js +3 -3
- package/dist/types/ObjectType.spec.js.map +1 -1
- package/dist/types/ReferenceType.d.ts +63 -0
- package/dist/types/ReferenceType.js +423 -0
- package/dist/types/ReferenceType.js.map +1 -0
- package/dist/types/ReferenceType.spec.d.ts +1 -0
- package/dist/types/ReferenceType.spec.js +137 -0
- package/dist/types/ReferenceType.spec.js.map +1 -0
- package/dist/types/StringType.d.ts +11 -5
- package/dist/types/StringType.js +18 -7
- package/dist/types/StringType.js.map +1 -1
- package/dist/types/StringType.spec.js +3 -5
- package/dist/types/StringType.spec.js.map +1 -1
- package/dist/types/TypedFunctionType.d.ts +22 -17
- package/dist/types/TypedFunctionType.js +78 -60
- package/dist/types/TypedFunctionType.js.map +1 -1
- package/dist/types/TypedFunctionType.spec.js +105 -20
- package/dist/types/TypedFunctionType.spec.js.map +1 -1
- package/dist/types/UninitializedType.d.ts +8 -6
- package/dist/types/UninitializedType.js +13 -7
- package/dist/types/UninitializedType.js.map +1 -1
- package/dist/types/UnionType.d.ts +20 -0
- package/dist/types/UnionType.js +123 -0
- package/dist/types/UnionType.js.map +1 -0
- package/dist/types/UnionType.spec.d.ts +1 -0
- package/dist/types/UnionType.spec.js +130 -0
- package/dist/types/UnionType.spec.js.map +1 -0
- package/dist/types/VoidType.d.ts +8 -5
- package/dist/types/VoidType.js +14 -7
- package/dist/types/VoidType.js.map +1 -1
- package/dist/types/VoidType.spec.js +3 -3
- package/dist/types/VoidType.spec.js.map +1 -1
- package/dist/types/helper.spec.d.ts +1 -0
- package/dist/types/helper.spec.js +145 -0
- package/dist/types/helper.spec.js.map +1 -0
- package/dist/types/helpers.d.ts +19 -37
- package/dist/types/helpers.js +159 -99
- package/dist/types/helpers.js.map +1 -1
- package/dist/types/index.d.ts +22 -0
- package/dist/types/index.js +39 -0
- package/dist/types/index.js.map +1 -0
- package/dist/util.d.ts +167 -131
- package/dist/util.js +890 -350
- package/dist/util.js.map +1 -1
- package/dist/validators/ClassValidator.d.ts +7 -25
- package/dist/validators/ClassValidator.js +103 -194
- package/dist/validators/ClassValidator.js.map +1 -1
- package/package.json +165 -149
- package/dist/astUtils/AstEditor.js.map +0 -1
- package/dist/astUtils/AstEditor.spec.js.map +0 -1
- package/dist/bscPlugin/transpile/BrsFilePreTranspileProcessor.d.ts +0 -8
- package/dist/bscPlugin/transpile/BrsFilePreTranspileProcessor.js +0 -40
- package/dist/bscPlugin/transpile/BrsFilePreTranspileProcessor.js.map +0 -1
- package/dist/bscPlugin/transpile/BrsFilePreTranspileProcessor.spec.js +0 -32
- package/dist/bscPlugin/transpile/BrsFilePreTranspileProcessor.spec.js.map +0 -1
- package/dist/parser/SGTypes.spec.js +0 -351
- package/dist/parser/SGTypes.spec.js.map +0 -1
- package/dist/types/CustomType.d.ts +0 -12
- package/dist/types/CustomType.js +0 -44
- package/dist/types/CustomType.js.map +0 -1
- package/dist/types/LazyType.d.ts +0 -16
- package/dist/types/LazyType.js +0 -44
- package/dist/types/LazyType.js.map +0 -1
- /package/dist/astUtils/{AstEditor.spec.d.ts → Editor.spec.d.ts} +0 -0
- /package/dist/bscPlugin/{transpile/BrsFilePreTranspileProcessor.spec.d.ts → completions/CompletionsProcessor.spec.d.ts} +0 -0
- /package/dist/{parser/SGTypes.spec.d.ts → bscPlugin/hover/HoverProcessor.spec.d.ts} +0 -0
|
@@ -395,7 +395,16 @@ export declare const nodes: {
|
|
|
395
395
|
name: string;
|
|
396
396
|
url: string;
|
|
397
397
|
};
|
|
398
|
-
|
|
398
|
+
infopane: {
|
|
399
|
+
availableSince: string;
|
|
400
|
+
description: string;
|
|
401
|
+
events: any[];
|
|
402
|
+
fields: any[];
|
|
403
|
+
interfaces: any[];
|
|
404
|
+
name: string;
|
|
405
|
+
url: string;
|
|
406
|
+
};
|
|
407
|
+
"key definition file": {
|
|
399
408
|
description: string;
|
|
400
409
|
events: any[];
|
|
401
410
|
fields: any[];
|
|
@@ -457,6 +466,25 @@ export declare const nodes: {
|
|
|
457
466
|
name: string;
|
|
458
467
|
url: string;
|
|
459
468
|
};
|
|
469
|
+
labelbase: {
|
|
470
|
+
availableSince: string;
|
|
471
|
+
description: string;
|
|
472
|
+
events: any[];
|
|
473
|
+
extends: {
|
|
474
|
+
name: string;
|
|
475
|
+
url: string;
|
|
476
|
+
};
|
|
477
|
+
fields: {
|
|
478
|
+
accessPermission: string;
|
|
479
|
+
default: string;
|
|
480
|
+
description: string;
|
|
481
|
+
name: string;
|
|
482
|
+
type: string;
|
|
483
|
+
}[];
|
|
484
|
+
interfaces: any[];
|
|
485
|
+
name: string;
|
|
486
|
+
url: string;
|
|
487
|
+
};
|
|
460
488
|
labellist: {
|
|
461
489
|
description: string;
|
|
462
490
|
events: any[];
|
|
@@ -583,6 +611,19 @@ export declare const nodes: {
|
|
|
583
611
|
name: string;
|
|
584
612
|
url: string;
|
|
585
613
|
};
|
|
614
|
+
multistylelabel: {
|
|
615
|
+
availableSince: string;
|
|
616
|
+
description: string;
|
|
617
|
+
events: any[];
|
|
618
|
+
extends: {
|
|
619
|
+
name: string;
|
|
620
|
+
url: string;
|
|
621
|
+
};
|
|
622
|
+
fields: any[];
|
|
623
|
+
interfaces: any[];
|
|
624
|
+
name: string;
|
|
625
|
+
url: string;
|
|
626
|
+
};
|
|
586
627
|
node: {
|
|
587
628
|
description: string;
|
|
588
629
|
events: {
|
|
@@ -600,6 +641,19 @@ export declare const nodes: {
|
|
|
600
641
|
name: string;
|
|
601
642
|
url: string;
|
|
602
643
|
}[];
|
|
644
|
+
methods: {
|
|
645
|
+
description: string;
|
|
646
|
+
isVariadic: boolean;
|
|
647
|
+
name: string;
|
|
648
|
+
params: {
|
|
649
|
+
default: any;
|
|
650
|
+
description: string;
|
|
651
|
+
isRequired: boolean;
|
|
652
|
+
name: string;
|
|
653
|
+
type: string;
|
|
654
|
+
}[];
|
|
655
|
+
returnType: string;
|
|
656
|
+
}[];
|
|
603
657
|
name: string;
|
|
604
658
|
url: string;
|
|
605
659
|
};
|
|
@@ -821,25 +875,6 @@ export declare const nodes: {
|
|
|
821
875
|
name: string;
|
|
822
876
|
url: string;
|
|
823
877
|
};
|
|
824
|
-
rsgpalette: {
|
|
825
|
-
availableSince: string;
|
|
826
|
-
description: string;
|
|
827
|
-
events: any[];
|
|
828
|
-
extends: {
|
|
829
|
-
name: string;
|
|
830
|
-
url: string;
|
|
831
|
-
};
|
|
832
|
-
fields: {
|
|
833
|
-
accessPermission: string;
|
|
834
|
-
default: string;
|
|
835
|
-
description: string;
|
|
836
|
-
name: string;
|
|
837
|
-
type: string;
|
|
838
|
-
}[];
|
|
839
|
-
interfaces: any[];
|
|
840
|
-
name: string;
|
|
841
|
-
url: string;
|
|
842
|
-
};
|
|
843
878
|
scene: {
|
|
844
879
|
description: string;
|
|
845
880
|
events: any[];
|
|
@@ -1037,6 +1072,25 @@ export declare const nodes: {
|
|
|
1037
1072
|
name: string;
|
|
1038
1073
|
url: string;
|
|
1039
1074
|
};
|
|
1075
|
+
stddlgactioncarditem: {
|
|
1076
|
+
availableSince: string;
|
|
1077
|
+
description: string;
|
|
1078
|
+
events: any[];
|
|
1079
|
+
extends: {
|
|
1080
|
+
name: string;
|
|
1081
|
+
url: string;
|
|
1082
|
+
};
|
|
1083
|
+
fields: {
|
|
1084
|
+
accessPermission: string;
|
|
1085
|
+
default: string;
|
|
1086
|
+
description: string;
|
|
1087
|
+
name: string;
|
|
1088
|
+
type: string;
|
|
1089
|
+
}[];
|
|
1090
|
+
interfaces: any[];
|
|
1091
|
+
name: string;
|
|
1092
|
+
url: string;
|
|
1093
|
+
};
|
|
1040
1094
|
stddlgareabase: {
|
|
1041
1095
|
availableSince: string;
|
|
1042
1096
|
description: string;
|
|
@@ -1114,6 +1168,25 @@ export declare const nodes: {
|
|
|
1114
1168
|
name: string;
|
|
1115
1169
|
url: string;
|
|
1116
1170
|
};
|
|
1171
|
+
stddlgcustomitem: {
|
|
1172
|
+
availableSince: string;
|
|
1173
|
+
description: string;
|
|
1174
|
+
events: any[];
|
|
1175
|
+
extends: {
|
|
1176
|
+
name: string;
|
|
1177
|
+
url: string;
|
|
1178
|
+
};
|
|
1179
|
+
fields: {
|
|
1180
|
+
accessPermission: string;
|
|
1181
|
+
default: string;
|
|
1182
|
+
description: string;
|
|
1183
|
+
name: string;
|
|
1184
|
+
type: string;
|
|
1185
|
+
}[];
|
|
1186
|
+
interfaces: any[];
|
|
1187
|
+
name: string;
|
|
1188
|
+
url: string;
|
|
1189
|
+
};
|
|
1117
1190
|
stddlgdeterminateprogressitem: {
|
|
1118
1191
|
availableSince: string;
|
|
1119
1192
|
description: string;
|
|
@@ -1171,6 +1244,25 @@ export declare const nodes: {
|
|
|
1171
1244
|
name: string;
|
|
1172
1245
|
url: string;
|
|
1173
1246
|
};
|
|
1247
|
+
stddlgitemgroup: {
|
|
1248
|
+
availableSince: string;
|
|
1249
|
+
description: string;
|
|
1250
|
+
events: any[];
|
|
1251
|
+
extends: {
|
|
1252
|
+
name: string;
|
|
1253
|
+
url: string;
|
|
1254
|
+
};
|
|
1255
|
+
fields: {
|
|
1256
|
+
accessPermission: string;
|
|
1257
|
+
default: string;
|
|
1258
|
+
description: string;
|
|
1259
|
+
name: string;
|
|
1260
|
+
type: string;
|
|
1261
|
+
}[];
|
|
1262
|
+
interfaces: any[];
|
|
1263
|
+
name: string;
|
|
1264
|
+
url: string;
|
|
1265
|
+
};
|
|
1174
1266
|
stddlgkeyboarditem: {
|
|
1175
1267
|
availableSince: string;
|
|
1176
1268
|
description: string;
|
|
@@ -1190,6 +1282,25 @@ export declare const nodes: {
|
|
|
1190
1282
|
name: string;
|
|
1191
1283
|
url: string;
|
|
1192
1284
|
};
|
|
1285
|
+
stddlgmultistyletextitem: {
|
|
1286
|
+
availableSince: string;
|
|
1287
|
+
description: string;
|
|
1288
|
+
events: any[];
|
|
1289
|
+
extends: {
|
|
1290
|
+
name: string;
|
|
1291
|
+
url: string;
|
|
1292
|
+
};
|
|
1293
|
+
fields: {
|
|
1294
|
+
accessPermission: string;
|
|
1295
|
+
default: string;
|
|
1296
|
+
description: string;
|
|
1297
|
+
name: string;
|
|
1298
|
+
type: string;
|
|
1299
|
+
}[];
|
|
1300
|
+
interfaces: any[];
|
|
1301
|
+
name: string;
|
|
1302
|
+
url: string;
|
|
1303
|
+
};
|
|
1193
1304
|
stddlgprogressitem: {
|
|
1194
1305
|
availableSince: string;
|
|
1195
1306
|
description: string;
|
|
@@ -1209,6 +1320,25 @@ export declare const nodes: {
|
|
|
1209
1320
|
name: string;
|
|
1210
1321
|
url: string;
|
|
1211
1322
|
};
|
|
1323
|
+
stddlgsidecardarea: {
|
|
1324
|
+
availableSince: string;
|
|
1325
|
+
description: string;
|
|
1326
|
+
events: any[];
|
|
1327
|
+
extends: {
|
|
1328
|
+
name: string;
|
|
1329
|
+
url: string;
|
|
1330
|
+
};
|
|
1331
|
+
fields: {
|
|
1332
|
+
accessPermission: string;
|
|
1333
|
+
default: string;
|
|
1334
|
+
description: string;
|
|
1335
|
+
name: string;
|
|
1336
|
+
type: string;
|
|
1337
|
+
}[];
|
|
1338
|
+
interfaces: any[];
|
|
1339
|
+
name: string;
|
|
1340
|
+
url: string;
|
|
1341
|
+
};
|
|
1212
1342
|
stddlgtextitem: {
|
|
1213
1343
|
availableSince: string;
|
|
1214
1344
|
description: string;
|
|
@@ -1421,10 +1551,6 @@ export declare const nodes: {
|
|
|
1421
1551
|
zoomrowlist: {
|
|
1422
1552
|
description: string;
|
|
1423
1553
|
events: any[];
|
|
1424
|
-
extends: {
|
|
1425
|
-
name: string;
|
|
1426
|
-
url: string;
|
|
1427
|
-
};
|
|
1428
1554
|
fields: any[];
|
|
1429
1555
|
interfaces: any[];
|
|
1430
1556
|
name: string;
|
|
@@ -1447,10 +1573,7 @@ export declare const components: {
|
|
|
1447
1573
|
url: string;
|
|
1448
1574
|
};
|
|
1449
1575
|
roappmanager: {
|
|
1450
|
-
constructors:
|
|
1451
|
-
params: any[];
|
|
1452
|
-
returnType: string;
|
|
1453
|
-
}[];
|
|
1576
|
+
constructors: any[];
|
|
1454
1577
|
description: string;
|
|
1455
1578
|
events: any[];
|
|
1456
1579
|
interfaces: {
|
|
@@ -1460,9 +1583,25 @@ export declare const components: {
|
|
|
1460
1583
|
name: string;
|
|
1461
1584
|
url: string;
|
|
1462
1585
|
};
|
|
1586
|
+
roappmemorymonitor: {
|
|
1587
|
+
availableSince: string;
|
|
1588
|
+
constructors: any[];
|
|
1589
|
+
description: string;
|
|
1590
|
+
events: {
|
|
1591
|
+
name: string;
|
|
1592
|
+
url: string;
|
|
1593
|
+
}[];
|
|
1594
|
+
interfaces: {
|
|
1595
|
+
name: string;
|
|
1596
|
+
url: string;
|
|
1597
|
+
}[];
|
|
1598
|
+
name: string;
|
|
1599
|
+
url: string;
|
|
1600
|
+
};
|
|
1463
1601
|
roarray: {
|
|
1464
1602
|
constructors: {
|
|
1465
1603
|
params: {
|
|
1604
|
+
default: any;
|
|
1466
1605
|
isRequired: boolean;
|
|
1467
1606
|
name: string;
|
|
1468
1607
|
type: string;
|
|
@@ -1553,14 +1692,22 @@ export declare const components: {
|
|
|
1553
1692
|
url: string;
|
|
1554
1693
|
};
|
|
1555
1694
|
robitmap: {
|
|
1556
|
-
constructors: {
|
|
1695
|
+
constructors: ({
|
|
1696
|
+
params: {
|
|
1697
|
+
default: any;
|
|
1698
|
+
isRequired: boolean;
|
|
1699
|
+
name: string;
|
|
1700
|
+
type: string;
|
|
1701
|
+
}[];
|
|
1702
|
+
returnType: string;
|
|
1703
|
+
} | {
|
|
1557
1704
|
params: {
|
|
1558
1705
|
isRequired: boolean;
|
|
1559
1706
|
name: string;
|
|
1560
1707
|
type: string;
|
|
1561
1708
|
}[];
|
|
1562
1709
|
returnType: string;
|
|
1563
|
-
}[];
|
|
1710
|
+
})[];
|
|
1564
1711
|
description: string;
|
|
1565
1712
|
events: any[];
|
|
1566
1713
|
interfaces: {
|
|
@@ -1595,9 +1742,8 @@ export declare const components: {
|
|
|
1595
1742
|
name: string;
|
|
1596
1743
|
url: string;
|
|
1597
1744
|
};
|
|
1598
|
-
|
|
1745
|
+
rocecstatus: {
|
|
1599
1746
|
constructors: any[];
|
|
1600
|
-
deprecatedDescription: string;
|
|
1601
1747
|
description: string;
|
|
1602
1748
|
events: {
|
|
1603
1749
|
name: string;
|
|
@@ -1607,7 +1753,6 @@ export declare const components: {
|
|
|
1607
1753
|
name: string;
|
|
1608
1754
|
url: string;
|
|
1609
1755
|
}[];
|
|
1610
|
-
isDeprecated: boolean;
|
|
1611
1756
|
name: string;
|
|
1612
1757
|
url: string;
|
|
1613
1758
|
};
|
|
@@ -1628,25 +1773,6 @@ export declare const components: {
|
|
|
1628
1773
|
name: string;
|
|
1629
1774
|
url: string;
|
|
1630
1775
|
};
|
|
1631
|
-
rocoderegistrationscreen: {
|
|
1632
|
-
constructors: {
|
|
1633
|
-
params: any[];
|
|
1634
|
-
returnType: string;
|
|
1635
|
-
}[];
|
|
1636
|
-
deprecatedDescription: string;
|
|
1637
|
-
description: string;
|
|
1638
|
-
events: {
|
|
1639
|
-
name: string;
|
|
1640
|
-
url: string;
|
|
1641
|
-
}[];
|
|
1642
|
-
interfaces: {
|
|
1643
|
-
name: string;
|
|
1644
|
-
url: string;
|
|
1645
|
-
}[];
|
|
1646
|
-
isDeprecated: boolean;
|
|
1647
|
-
name: string;
|
|
1648
|
-
url: string;
|
|
1649
|
-
};
|
|
1650
1776
|
rocompositor: {
|
|
1651
1777
|
constructors: {
|
|
1652
1778
|
params: any[];
|
|
@@ -1734,6 +1860,18 @@ export declare const components: {
|
|
|
1734
1860
|
name: string;
|
|
1735
1861
|
url: string;
|
|
1736
1862
|
};
|
|
1863
|
+
rodsa: {
|
|
1864
|
+
availableSince: string;
|
|
1865
|
+
constructors: any[];
|
|
1866
|
+
description: string;
|
|
1867
|
+
events: any[];
|
|
1868
|
+
interfaces: {
|
|
1869
|
+
name: string;
|
|
1870
|
+
url: string;
|
|
1871
|
+
}[];
|
|
1872
|
+
name: string;
|
|
1873
|
+
url: string;
|
|
1874
|
+
};
|
|
1737
1875
|
roevpcipher: {
|
|
1738
1876
|
constructors: any[];
|
|
1739
1877
|
description: string;
|
|
@@ -1798,31 +1936,22 @@ export declare const components: {
|
|
|
1798
1936
|
name: string;
|
|
1799
1937
|
url: string;
|
|
1800
1938
|
};
|
|
1801
|
-
|
|
1939
|
+
rofontregistry: {
|
|
1802
1940
|
constructors: {
|
|
1803
|
-
params:
|
|
1804
|
-
isRequired: boolean;
|
|
1805
|
-
name: string;
|
|
1806
|
-
type: string;
|
|
1807
|
-
}[];
|
|
1941
|
+
params: any[];
|
|
1808
1942
|
returnType: string;
|
|
1809
1943
|
}[];
|
|
1810
|
-
deprecatedDescription: string;
|
|
1811
1944
|
description: string;
|
|
1812
1945
|
events: any[];
|
|
1813
1946
|
interfaces: {
|
|
1814
1947
|
name: string;
|
|
1815
1948
|
url: string;
|
|
1816
1949
|
}[];
|
|
1817
|
-
isDeprecated: boolean;
|
|
1818
1950
|
name: string;
|
|
1819
1951
|
url: string;
|
|
1820
1952
|
};
|
|
1821
|
-
|
|
1822
|
-
constructors:
|
|
1823
|
-
params: any[];
|
|
1824
|
-
returnType: string;
|
|
1825
|
-
}[];
|
|
1953
|
+
rofunction: {
|
|
1954
|
+
constructors: any[];
|
|
1826
1955
|
description: string;
|
|
1827
1956
|
events: any[];
|
|
1828
1957
|
interfaces: {
|
|
@@ -1832,7 +1961,7 @@ export declare const components: {
|
|
|
1832
1961
|
name: string;
|
|
1833
1962
|
url: string;
|
|
1834
1963
|
};
|
|
1835
|
-
|
|
1964
|
+
rohdmistatus: {
|
|
1836
1965
|
constructors: any[];
|
|
1837
1966
|
description: string;
|
|
1838
1967
|
events: any[];
|
|
@@ -1843,27 +1972,11 @@ export declare const components: {
|
|
|
1843
1972
|
name: string;
|
|
1844
1973
|
url: string;
|
|
1845
1974
|
};
|
|
1846
|
-
|
|
1975
|
+
rohmac: {
|
|
1847
1976
|
constructors: {
|
|
1848
1977
|
params: any[];
|
|
1849
1978
|
returnType: string;
|
|
1850
1979
|
}[];
|
|
1851
|
-
deprecatedDescription: string;
|
|
1852
|
-
description: string;
|
|
1853
|
-
events: {
|
|
1854
|
-
name: string;
|
|
1855
|
-
url: string;
|
|
1856
|
-
}[];
|
|
1857
|
-
interfaces: {
|
|
1858
|
-
name: string;
|
|
1859
|
-
url: string;
|
|
1860
|
-
}[];
|
|
1861
|
-
isDeprecated: boolean;
|
|
1862
|
-
name: string;
|
|
1863
|
-
url: string;
|
|
1864
|
-
};
|
|
1865
|
-
rohdmistatus: {
|
|
1866
|
-
constructors: any[];
|
|
1867
1980
|
description: string;
|
|
1868
1981
|
events: any[];
|
|
1869
1982
|
interfaces: {
|
|
@@ -1873,7 +1986,7 @@ export declare const components: {
|
|
|
1873
1986
|
name: string;
|
|
1874
1987
|
url: string;
|
|
1875
1988
|
};
|
|
1876
|
-
|
|
1989
|
+
rohttpagent: {
|
|
1877
1990
|
constructors: {
|
|
1878
1991
|
params: any[];
|
|
1879
1992
|
returnType: string;
|
|
@@ -1887,7 +2000,7 @@ export declare const components: {
|
|
|
1887
2000
|
name: string;
|
|
1888
2001
|
url: string;
|
|
1889
2002
|
};
|
|
1890
|
-
|
|
2003
|
+
roimagemetadata: {
|
|
1891
2004
|
constructors: {
|
|
1892
2005
|
params: any[];
|
|
1893
2006
|
returnType: string;
|
|
@@ -1901,37 +2014,7 @@ export declare const components: {
|
|
|
1901
2014
|
name: string;
|
|
1902
2015
|
url: string;
|
|
1903
2016
|
};
|
|
1904
|
-
|
|
1905
|
-
constructors: {
|
|
1906
|
-
params: any[];
|
|
1907
|
-
returnType: string;
|
|
1908
|
-
}[];
|
|
1909
|
-
deprecatedDescription: string;
|
|
1910
|
-
description: string;
|
|
1911
|
-
events: {
|
|
1912
|
-
name: string;
|
|
1913
|
-
url: string;
|
|
1914
|
-
}[];
|
|
1915
|
-
interfaces: {
|
|
1916
|
-
name: string;
|
|
1917
|
-
url: string;
|
|
1918
|
-
}[];
|
|
1919
|
-
isDeprecated: boolean;
|
|
1920
|
-
name: string;
|
|
1921
|
-
url: string;
|
|
1922
|
-
};
|
|
1923
|
-
roimagemetadata: {
|
|
1924
|
-
constructors: any[];
|
|
1925
|
-
description: string;
|
|
1926
|
-
events: any[];
|
|
1927
|
-
interfaces: {
|
|
1928
|
-
name: string;
|
|
1929
|
-
url: string;
|
|
1930
|
-
}[];
|
|
1931
|
-
name: string;
|
|
1932
|
-
url: string;
|
|
1933
|
-
};
|
|
1934
|
-
roinput: {
|
|
2017
|
+
roinput: {
|
|
1935
2018
|
constructors: {
|
|
1936
2019
|
params: any[];
|
|
1937
2020
|
returnType: string;
|
|
@@ -1973,25 +2056,6 @@ export declare const components: {
|
|
|
1973
2056
|
name: string;
|
|
1974
2057
|
url: string;
|
|
1975
2058
|
};
|
|
1976
|
-
rokeyboardscreen: {
|
|
1977
|
-
constructors: {
|
|
1978
|
-
params: any[];
|
|
1979
|
-
returnType: string;
|
|
1980
|
-
}[];
|
|
1981
|
-
deprecatedDescription: string;
|
|
1982
|
-
description: string;
|
|
1983
|
-
events: {
|
|
1984
|
-
name: string;
|
|
1985
|
-
url: string;
|
|
1986
|
-
}[];
|
|
1987
|
-
interfaces: {
|
|
1988
|
-
name: string;
|
|
1989
|
-
url: string;
|
|
1990
|
-
}[];
|
|
1991
|
-
isDeprecated: boolean;
|
|
1992
|
-
name: string;
|
|
1993
|
-
url: string;
|
|
1994
|
-
};
|
|
1995
2059
|
rolist: {
|
|
1996
2060
|
constructors: {
|
|
1997
2061
|
params: any[];
|
|
@@ -2006,22 +2070,6 @@ export declare const components: {
|
|
|
2006
2070
|
name: string;
|
|
2007
2071
|
url: string;
|
|
2008
2072
|
};
|
|
2009
|
-
rolistscreen: {
|
|
2010
|
-
constructors: any[];
|
|
2011
|
-
deprecatedDescription: string;
|
|
2012
|
-
description: string;
|
|
2013
|
-
events: {
|
|
2014
|
-
name: string;
|
|
2015
|
-
url: string;
|
|
2016
|
-
}[];
|
|
2017
|
-
interfaces: {
|
|
2018
|
-
name: string;
|
|
2019
|
-
url: string;
|
|
2020
|
-
}[];
|
|
2021
|
-
isDeprecated: boolean;
|
|
2022
|
-
name: string;
|
|
2023
|
-
url: string;
|
|
2024
|
-
};
|
|
2025
2073
|
rolocalization: {
|
|
2026
2074
|
constructors: {
|
|
2027
2075
|
params: any[];
|
|
@@ -2047,25 +2095,6 @@ export declare const components: {
|
|
|
2047
2095
|
name: string;
|
|
2048
2096
|
url: string;
|
|
2049
2097
|
};
|
|
2050
|
-
romessagedialog: {
|
|
2051
|
-
constructors: {
|
|
2052
|
-
params: any[];
|
|
2053
|
-
returnType: string;
|
|
2054
|
-
}[];
|
|
2055
|
-
deprecatedDescription: string;
|
|
2056
|
-
description: string;
|
|
2057
|
-
events: {
|
|
2058
|
-
name: string;
|
|
2059
|
-
url: string;
|
|
2060
|
-
}[];
|
|
2061
|
-
interfaces: {
|
|
2062
|
-
name: string;
|
|
2063
|
-
url: string;
|
|
2064
|
-
}[];
|
|
2065
|
-
isDeprecated: boolean;
|
|
2066
|
-
name: string;
|
|
2067
|
-
url: string;
|
|
2068
|
-
};
|
|
2069
2098
|
romessageport: {
|
|
2070
2099
|
constructors: {
|
|
2071
2100
|
params: any[];
|
|
@@ -2094,41 +2123,6 @@ export declare const components: {
|
|
|
2094
2123
|
name: string;
|
|
2095
2124
|
url: string;
|
|
2096
2125
|
};
|
|
2097
|
-
roonelinedialog: {
|
|
2098
|
-
constructors: any[];
|
|
2099
|
-
deprecatedDescription: string;
|
|
2100
|
-
description: string;
|
|
2101
|
-
events: {
|
|
2102
|
-
name: string;
|
|
2103
|
-
url: string;
|
|
2104
|
-
}[];
|
|
2105
|
-
interfaces: {
|
|
2106
|
-
name: string;
|
|
2107
|
-
url: string;
|
|
2108
|
-
}[];
|
|
2109
|
-
isDeprecated: boolean;
|
|
2110
|
-
name: string;
|
|
2111
|
-
url: string;
|
|
2112
|
-
};
|
|
2113
|
-
roparagraphscreen: {
|
|
2114
|
-
constructors: {
|
|
2115
|
-
params: any[];
|
|
2116
|
-
returnType: string;
|
|
2117
|
-
}[];
|
|
2118
|
-
deprecatedDescription: string;
|
|
2119
|
-
description: string;
|
|
2120
|
-
events: {
|
|
2121
|
-
name: string;
|
|
2122
|
-
url: string;
|
|
2123
|
-
}[];
|
|
2124
|
-
interfaces: {
|
|
2125
|
-
name: string;
|
|
2126
|
-
url: string;
|
|
2127
|
-
}[];
|
|
2128
|
-
isDeprecated: boolean;
|
|
2129
|
-
name: string;
|
|
2130
|
-
url: string;
|
|
2131
|
-
};
|
|
2132
2126
|
ropath: {
|
|
2133
2127
|
constructors: {
|
|
2134
2128
|
params: {
|
|
@@ -2147,41 +2141,6 @@ export declare const components: {
|
|
|
2147
2141
|
name: string;
|
|
2148
2142
|
url: string;
|
|
2149
2143
|
};
|
|
2150
|
-
ropinentrydialog: {
|
|
2151
|
-
constructors: any[];
|
|
2152
|
-
deprecatedDescription: string;
|
|
2153
|
-
description: string;
|
|
2154
|
-
events: {
|
|
2155
|
-
name: string;
|
|
2156
|
-
url: string;
|
|
2157
|
-
}[];
|
|
2158
|
-
interfaces: {
|
|
2159
|
-
name: string;
|
|
2160
|
-
url: string;
|
|
2161
|
-
}[];
|
|
2162
|
-
isDeprecated: boolean;
|
|
2163
|
-
name: string;
|
|
2164
|
-
url: string;
|
|
2165
|
-
};
|
|
2166
|
-
roposterscreen: {
|
|
2167
|
-
constructors: {
|
|
2168
|
-
params: any[];
|
|
2169
|
-
returnType: string;
|
|
2170
|
-
}[];
|
|
2171
|
-
deprecatedDescription: string;
|
|
2172
|
-
description: string;
|
|
2173
|
-
events: {
|
|
2174
|
-
name: string;
|
|
2175
|
-
url: string;
|
|
2176
|
-
}[];
|
|
2177
|
-
interfaces: {
|
|
2178
|
-
name: string;
|
|
2179
|
-
url: string;
|
|
2180
|
-
}[];
|
|
2181
|
-
isDeprecated: boolean;
|
|
2182
|
-
name: string;
|
|
2183
|
-
url: string;
|
|
2184
|
-
};
|
|
2185
2144
|
roprogramguide: {
|
|
2186
2145
|
constructors: any[];
|
|
2187
2146
|
description: string;
|
|
@@ -2214,6 +2173,7 @@ export declare const components: {
|
|
|
2214
2173
|
roregion: {
|
|
2215
2174
|
constructors: {
|
|
2216
2175
|
params: {
|
|
2176
|
+
default: any;
|
|
2217
2177
|
isRequired: boolean;
|
|
2218
2178
|
name: string;
|
|
2219
2179
|
type: string;
|
|
@@ -2244,51 +2204,24 @@ export declare const components: {
|
|
|
2244
2204
|
url: string;
|
|
2245
2205
|
};
|
|
2246
2206
|
roregistrysection: {
|
|
2247
|
-
constructors: {
|
|
2207
|
+
constructors: ({
|
|
2248
2208
|
params: {
|
|
2209
|
+
default: any;
|
|
2249
2210
|
isRequired: boolean;
|
|
2250
2211
|
name: string;
|
|
2251
2212
|
type: string;
|
|
2252
2213
|
}[];
|
|
2253
2214
|
returnType: string;
|
|
2254
|
-
}
|
|
2255
|
-
description: string;
|
|
2256
|
-
events: any[];
|
|
2257
|
-
interfaces: {
|
|
2258
|
-
name: string;
|
|
2259
|
-
url: string;
|
|
2260
|
-
}[];
|
|
2261
|
-
name: string;
|
|
2262
|
-
url: string;
|
|
2263
|
-
};
|
|
2264
|
-
rorsa: {
|
|
2265
|
-
constructors: {
|
|
2266
|
-
params: any[];
|
|
2267
|
-
returnType: string;
|
|
2268
|
-
}[];
|
|
2269
|
-
description: string;
|
|
2270
|
-
events: any[];
|
|
2271
|
-
interfaces: {
|
|
2272
|
-
name: string;
|
|
2273
|
-
url: string;
|
|
2274
|
-
}[];
|
|
2275
|
-
name: string;
|
|
2276
|
-
url: string;
|
|
2277
|
-
};
|
|
2278
|
-
roscreen: {
|
|
2279
|
-
constructors: {
|
|
2215
|
+
} | {
|
|
2280
2216
|
params: {
|
|
2281
2217
|
isRequired: boolean;
|
|
2282
2218
|
name: string;
|
|
2283
2219
|
type: string;
|
|
2284
2220
|
}[];
|
|
2285
2221
|
returnType: string;
|
|
2286
|
-
}[];
|
|
2222
|
+
})[];
|
|
2287
2223
|
description: string;
|
|
2288
|
-
events:
|
|
2289
|
-
name: string;
|
|
2290
|
-
url: string;
|
|
2291
|
-
}[];
|
|
2224
|
+
events: any[];
|
|
2292
2225
|
interfaces: {
|
|
2293
2226
|
name: string;
|
|
2294
2227
|
url: string;
|
|
@@ -2296,42 +2229,35 @@ export declare const components: {
|
|
|
2296
2229
|
name: string;
|
|
2297
2230
|
url: string;
|
|
2298
2231
|
};
|
|
2299
|
-
|
|
2232
|
+
roremoteinfo: {
|
|
2300
2233
|
constructors: {
|
|
2301
2234
|
params: any[];
|
|
2302
2235
|
returnType: string;
|
|
2303
2236
|
}[];
|
|
2304
|
-
deprecatedDescription: string;
|
|
2305
2237
|
description: string;
|
|
2306
2238
|
events: any[];
|
|
2307
2239
|
interfaces: {
|
|
2308
2240
|
name: string;
|
|
2309
2241
|
url: string;
|
|
2310
2242
|
}[];
|
|
2311
|
-
isDeprecated: boolean;
|
|
2312
2243
|
name: string;
|
|
2313
2244
|
url: string;
|
|
2314
2245
|
};
|
|
2315
|
-
|
|
2246
|
+
rorsa: {
|
|
2316
2247
|
constructors: {
|
|
2317
2248
|
params: any[];
|
|
2318
2249
|
returnType: string;
|
|
2319
2250
|
}[];
|
|
2320
|
-
deprecatedDescription: string;
|
|
2321
2251
|
description: string;
|
|
2322
|
-
events:
|
|
2323
|
-
name: string;
|
|
2324
|
-
url: string;
|
|
2325
|
-
}[];
|
|
2252
|
+
events: any[];
|
|
2326
2253
|
interfaces: {
|
|
2327
2254
|
name: string;
|
|
2328
2255
|
url: string;
|
|
2329
2256
|
}[];
|
|
2330
|
-
isDeprecated: boolean;
|
|
2331
2257
|
name: string;
|
|
2332
2258
|
url: string;
|
|
2333
2259
|
};
|
|
2334
|
-
|
|
2260
|
+
roscreen: {
|
|
2335
2261
|
constructors: {
|
|
2336
2262
|
params: {
|
|
2337
2263
|
isRequired: boolean;
|
|
@@ -2352,9 +2278,13 @@ export declare const components: {
|
|
|
2352
2278
|
name: string;
|
|
2353
2279
|
url: string;
|
|
2354
2280
|
};
|
|
2355
|
-
|
|
2281
|
+
rosgnode: {
|
|
2356
2282
|
constructors: {
|
|
2357
|
-
params:
|
|
2283
|
+
params: {
|
|
2284
|
+
isRequired: boolean;
|
|
2285
|
+
name: string;
|
|
2286
|
+
type: string;
|
|
2287
|
+
}[];
|
|
2358
2288
|
returnType: string;
|
|
2359
2289
|
}[];
|
|
2360
2290
|
description: string;
|
|
@@ -2369,12 +2299,11 @@ export declare const components: {
|
|
|
2369
2299
|
name: string;
|
|
2370
2300
|
url: string;
|
|
2371
2301
|
};
|
|
2372
|
-
|
|
2302
|
+
rosgscreen: {
|
|
2373
2303
|
constructors: {
|
|
2374
2304
|
params: any[];
|
|
2375
2305
|
returnType: string;
|
|
2376
2306
|
}[];
|
|
2377
|
-
deprecatedDescription: string;
|
|
2378
2307
|
description: string;
|
|
2379
2308
|
events: {
|
|
2380
2309
|
name: string;
|
|
@@ -2384,7 +2313,6 @@ export declare const components: {
|
|
|
2384
2313
|
name: string;
|
|
2385
2314
|
url: string;
|
|
2386
2315
|
}[];
|
|
2387
|
-
isDeprecated: boolean;
|
|
2388
2316
|
name: string;
|
|
2389
2317
|
url: string;
|
|
2390
2318
|
};
|
|
@@ -2402,23 +2330,6 @@ export declare const components: {
|
|
|
2402
2330
|
name: string;
|
|
2403
2331
|
url: string;
|
|
2404
2332
|
};
|
|
2405
|
-
rospringboardscreen: {
|
|
2406
|
-
constructors: {
|
|
2407
|
-
params: any[];
|
|
2408
|
-
returnType: string;
|
|
2409
|
-
}[];
|
|
2410
|
-
description: string;
|
|
2411
|
-
events: {
|
|
2412
|
-
name: string;
|
|
2413
|
-
url: string;
|
|
2414
|
-
}[];
|
|
2415
|
-
interfaces: {
|
|
2416
|
-
name: string;
|
|
2417
|
-
url: string;
|
|
2418
|
-
}[];
|
|
2419
|
-
name: string;
|
|
2420
|
-
url: string;
|
|
2421
|
-
};
|
|
2422
2333
|
rosprite: {
|
|
2423
2334
|
constructors: any[];
|
|
2424
2335
|
description: string;
|
|
@@ -2459,29 +2370,16 @@ export declare const components: {
|
|
|
2459
2370
|
url: string;
|
|
2460
2371
|
};
|
|
2461
2372
|
rosystemlog: {
|
|
2462
|
-
constructors:
|
|
2463
|
-
|
|
2464
|
-
|
|
2465
|
-
interfaces: {
|
|
2466
|
-
name: string;
|
|
2467
|
-
url: string;
|
|
2373
|
+
constructors: {
|
|
2374
|
+
params: any[];
|
|
2375
|
+
returnType: string;
|
|
2468
2376
|
}[];
|
|
2469
|
-
name: string;
|
|
2470
|
-
url: string;
|
|
2471
|
-
};
|
|
2472
|
-
rotextscreen: {
|
|
2473
|
-
constructors: any[];
|
|
2474
|
-
deprecatedDescription: string;
|
|
2475
2377
|
description: string;
|
|
2476
|
-
events:
|
|
2477
|
-
name: string;
|
|
2478
|
-
url: string;
|
|
2479
|
-
}[];
|
|
2378
|
+
events: any[];
|
|
2480
2379
|
interfaces: {
|
|
2481
2380
|
name: string;
|
|
2482
2381
|
url: string;
|
|
2483
2382
|
}[];
|
|
2484
|
-
isDeprecated: boolean;
|
|
2485
2383
|
name: string;
|
|
2486
2384
|
url: string;
|
|
2487
2385
|
};
|
|
@@ -2585,25 +2483,6 @@ export declare const components: {
|
|
|
2585
2483
|
name: string;
|
|
2586
2484
|
url: string;
|
|
2587
2485
|
};
|
|
2588
|
-
rovideoscreen: {
|
|
2589
|
-
constructors: {
|
|
2590
|
-
params: any[];
|
|
2591
|
-
returnType: string;
|
|
2592
|
-
}[];
|
|
2593
|
-
deprecatedDescription: string;
|
|
2594
|
-
description: string;
|
|
2595
|
-
events: {
|
|
2596
|
-
name: string;
|
|
2597
|
-
url: string;
|
|
2598
|
-
}[];
|
|
2599
|
-
interfaces: {
|
|
2600
|
-
name: string;
|
|
2601
|
-
url: string;
|
|
2602
|
-
}[];
|
|
2603
|
-
isDeprecated: boolean;
|
|
2604
|
-
name: string;
|
|
2605
|
-
url: string;
|
|
2606
|
-
};
|
|
2607
2486
|
roxmlelement: {
|
|
2608
2487
|
constructors: any[];
|
|
2609
2488
|
description: string;
|
|
@@ -2632,12 +2511,7 @@ export declare const interfaces: {
|
|
|
2632
2511
|
implementers: any[];
|
|
2633
2512
|
methods: any[];
|
|
2634
2513
|
name: string;
|
|
2635
|
-
properties:
|
|
2636
|
-
default: string;
|
|
2637
|
-
description: string;
|
|
2638
|
-
name: string;
|
|
2639
|
-
type: string;
|
|
2640
|
-
}[];
|
|
2514
|
+
properties: any[];
|
|
2641
2515
|
};
|
|
2642
2516
|
ifappinfo: {
|
|
2643
2517
|
implementers: {
|
|
@@ -2678,8 +2552,8 @@ export declare const interfaces: {
|
|
|
2678
2552
|
name: string;
|
|
2679
2553
|
type: string;
|
|
2680
2554
|
}[];
|
|
2555
|
+
returnDescription: string;
|
|
2681
2556
|
returnType: string;
|
|
2682
|
-
returnDescription?: undefined;
|
|
2683
2557
|
} | {
|
|
2684
2558
|
description: string;
|
|
2685
2559
|
name: string;
|
|
@@ -2690,20 +2564,20 @@ export declare const interfaces: {
|
|
|
2690
2564
|
name: string;
|
|
2691
2565
|
type: string;
|
|
2692
2566
|
}[];
|
|
2693
|
-
returnDescription: string;
|
|
2694
2567
|
returnType: string;
|
|
2568
|
+
returnDescription?: undefined;
|
|
2695
2569
|
})[];
|
|
2696
2570
|
name: string;
|
|
2697
2571
|
properties: any[];
|
|
2698
2572
|
url: string;
|
|
2699
2573
|
};
|
|
2700
|
-
|
|
2574
|
+
ifappmemorymonitor: {
|
|
2701
2575
|
implementers: {
|
|
2702
2576
|
description: string;
|
|
2703
2577
|
name: string;
|
|
2704
2578
|
url: string;
|
|
2705
2579
|
}[];
|
|
2706
|
-
methods:
|
|
2580
|
+
methods: {
|
|
2707
2581
|
description: string;
|
|
2708
2582
|
name: string;
|
|
2709
2583
|
params: {
|
|
@@ -2713,14 +2587,37 @@ export declare const interfaces: {
|
|
|
2713
2587
|
name: string;
|
|
2714
2588
|
type: string;
|
|
2715
2589
|
}[];
|
|
2590
|
+
returnDescription: string;
|
|
2716
2591
|
returnType: string;
|
|
2717
|
-
|
|
2718
|
-
|
|
2719
|
-
|
|
2720
|
-
|
|
2721
|
-
|
|
2722
|
-
|
|
2723
|
-
|
|
2592
|
+
}[];
|
|
2593
|
+
name: string;
|
|
2594
|
+
properties: any[];
|
|
2595
|
+
url: string;
|
|
2596
|
+
};
|
|
2597
|
+
ifarray: {
|
|
2598
|
+
implementers: {
|
|
2599
|
+
description: string;
|
|
2600
|
+
name: string;
|
|
2601
|
+
url: string;
|
|
2602
|
+
}[];
|
|
2603
|
+
methods: ({
|
|
2604
|
+
description: string;
|
|
2605
|
+
name: string;
|
|
2606
|
+
params: {
|
|
2607
|
+
default: any;
|
|
2608
|
+
description: string;
|
|
2609
|
+
isRequired: boolean;
|
|
2610
|
+
name: string;
|
|
2611
|
+
type: string;
|
|
2612
|
+
}[];
|
|
2613
|
+
returnType: string;
|
|
2614
|
+
returnDescription?: undefined;
|
|
2615
|
+
} | {
|
|
2616
|
+
description: string;
|
|
2617
|
+
name: string;
|
|
2618
|
+
params: {
|
|
2619
|
+
default: any;
|
|
2620
|
+
isRequired: boolean;
|
|
2724
2621
|
name: string;
|
|
2725
2622
|
type: string;
|
|
2726
2623
|
}[];
|
|
@@ -2807,12 +2704,7 @@ export declare const interfaces: {
|
|
|
2807
2704
|
name: string;
|
|
2808
2705
|
url: string;
|
|
2809
2706
|
}[];
|
|
2810
|
-
methods:
|
|
2811
|
-
description: string;
|
|
2812
|
-
name: string;
|
|
2813
|
-
params: any[];
|
|
2814
|
-
returnType: string;
|
|
2815
|
-
} | {
|
|
2707
|
+
methods: {
|
|
2816
2708
|
description: string;
|
|
2817
2709
|
name: string;
|
|
2818
2710
|
params: {
|
|
@@ -2822,8 +2714,8 @@ export declare const interfaces: {
|
|
|
2822
2714
|
name: string;
|
|
2823
2715
|
type: string;
|
|
2824
2716
|
}[];
|
|
2825
|
-
returnType
|
|
2826
|
-
}
|
|
2717
|
+
returnType: string;
|
|
2718
|
+
}[];
|
|
2827
2719
|
name: string;
|
|
2828
2720
|
properties: any[];
|
|
2829
2721
|
url: string;
|
|
@@ -2846,18 +2738,6 @@ export declare const interfaces: {
|
|
|
2846
2738
|
}[];
|
|
2847
2739
|
returnType: string;
|
|
2848
2740
|
returnDescription?: undefined;
|
|
2849
|
-
} | {
|
|
2850
|
-
description: string;
|
|
2851
|
-
name: string;
|
|
2852
|
-
params: {
|
|
2853
|
-
default: any;
|
|
2854
|
-
description: string;
|
|
2855
|
-
isRequired: boolean;
|
|
2856
|
-
name: string;
|
|
2857
|
-
type: string;
|
|
2858
|
-
}[];
|
|
2859
|
-
returnType?: undefined;
|
|
2860
|
-
returnDescription?: undefined;
|
|
2861
2741
|
} | {
|
|
2862
2742
|
description: string;
|
|
2863
2743
|
name: string;
|
|
@@ -2886,8 +2766,8 @@ export declare const interfaces: {
|
|
|
2886
2766
|
description: string;
|
|
2887
2767
|
name: string;
|
|
2888
2768
|
params: any[];
|
|
2769
|
+
returnType: string;
|
|
2889
2770
|
returnDescription?: undefined;
|
|
2890
|
-
returnType?: undefined;
|
|
2891
2771
|
} | {
|
|
2892
2772
|
description: string;
|
|
2893
2773
|
name: string;
|
|
@@ -2975,16 +2855,6 @@ export declare const interfaces: {
|
|
|
2975
2855
|
}[];
|
|
2976
2856
|
returnType: string;
|
|
2977
2857
|
returnDescription?: undefined;
|
|
2978
|
-
} | {
|
|
2979
|
-
description: string;
|
|
2980
|
-
name: string;
|
|
2981
|
-
params: {
|
|
2982
|
-
default: any;
|
|
2983
|
-
isRequired: boolean;
|
|
2984
|
-
name: string;
|
|
2985
|
-
}[];
|
|
2986
|
-
returnType?: undefined;
|
|
2987
|
-
returnDescription?: undefined;
|
|
2988
2858
|
})[];
|
|
2989
2859
|
name: string;
|
|
2990
2860
|
properties: any[];
|
|
@@ -3067,36 +2937,6 @@ export declare const interfaces: {
|
|
|
3067
2937
|
}[];
|
|
3068
2938
|
returnDescription: string;
|
|
3069
2939
|
returnType: string;
|
|
3070
|
-
} | {
|
|
3071
|
-
description: string;
|
|
3072
|
-
name: string;
|
|
3073
|
-
params: ({
|
|
3074
|
-
default: any;
|
|
3075
|
-
description: string;
|
|
3076
|
-
isRequired: boolean;
|
|
3077
|
-
name: string;
|
|
3078
|
-
type: string;
|
|
3079
|
-
} | {
|
|
3080
|
-
default: any;
|
|
3081
|
-
isRequired: boolean;
|
|
3082
|
-
name: string;
|
|
3083
|
-
description?: undefined;
|
|
3084
|
-
type?: undefined;
|
|
3085
|
-
})[];
|
|
3086
|
-
returnDescription: string;
|
|
3087
|
-
returnType?: undefined;
|
|
3088
|
-
} | {
|
|
3089
|
-
description: string;
|
|
3090
|
-
name: string;
|
|
3091
|
-
params: {
|
|
3092
|
-
default: any;
|
|
3093
|
-
description: string;
|
|
3094
|
-
isRequired: boolean;
|
|
3095
|
-
name: string;
|
|
3096
|
-
type: string;
|
|
3097
|
-
}[];
|
|
3098
|
-
returnDescription?: undefined;
|
|
3099
|
-
returnType?: undefined;
|
|
3100
2940
|
} | {
|
|
3101
2941
|
description: string;
|
|
3102
2942
|
name: string;
|
|
@@ -3109,58 +2949,24 @@ export declare const interfaces: {
|
|
|
3109
2949
|
}[];
|
|
3110
2950
|
returnType: string;
|
|
3111
2951
|
returnDescription?: undefined;
|
|
3112
|
-
} | {
|
|
3113
|
-
description: string;
|
|
3114
|
-
name: string;
|
|
3115
|
-
params: {
|
|
3116
|
-
default: any;
|
|
3117
|
-
isRequired: boolean;
|
|
3118
|
-
name: string;
|
|
3119
|
-
}[];
|
|
3120
|
-
returnDescription?: undefined;
|
|
3121
|
-
returnType?: undefined;
|
|
3122
2952
|
})[];
|
|
3123
2953
|
name: string;
|
|
3124
2954
|
properties: any[];
|
|
3125
2955
|
url: string;
|
|
3126
2956
|
};
|
|
3127
|
-
|
|
3128
|
-
description: string;
|
|
2957
|
+
ifcecstatus: {
|
|
3129
2958
|
implementers: {
|
|
3130
2959
|
description: string;
|
|
3131
2960
|
name: string;
|
|
3132
2961
|
url: string;
|
|
3133
2962
|
}[];
|
|
3134
|
-
methods:
|
|
3135
|
-
description: string;
|
|
3136
|
-
name: string;
|
|
3137
|
-
params: {
|
|
3138
|
-
default: any;
|
|
3139
|
-
description: string;
|
|
3140
|
-
isRequired: boolean;
|
|
3141
|
-
name: string;
|
|
3142
|
-
type: string;
|
|
3143
|
-
}[];
|
|
3144
|
-
returnType: string;
|
|
3145
|
-
returnDescription?: undefined;
|
|
3146
|
-
} | {
|
|
2963
|
+
methods: {
|
|
3147
2964
|
description: string;
|
|
3148
2965
|
name: string;
|
|
3149
2966
|
params: any[];
|
|
3150
2967
|
returnDescription: string;
|
|
3151
2968
|
returnType: string;
|
|
3152
|
-
}
|
|
3153
|
-
description: string;
|
|
3154
|
-
name: string;
|
|
3155
|
-
params: {
|
|
3156
|
-
default: any;
|
|
3157
|
-
isRequired: boolean;
|
|
3158
|
-
name: string;
|
|
3159
|
-
type: string;
|
|
3160
|
-
}[];
|
|
3161
|
-
returnType: string;
|
|
3162
|
-
returnDescription?: undefined;
|
|
3163
|
-
})[];
|
|
2969
|
+
}[];
|
|
3164
2970
|
name: string;
|
|
3165
2971
|
properties: any[];
|
|
3166
2972
|
url: string;
|
|
@@ -3189,6 +2995,18 @@ export declare const interfaces: {
|
|
|
3189
2995
|
}[];
|
|
3190
2996
|
returnType: string;
|
|
3191
2997
|
returnDescription?: undefined;
|
|
2998
|
+
} | {
|
|
2999
|
+
name: string;
|
|
3000
|
+
params: {
|
|
3001
|
+
default: any;
|
|
3002
|
+
description: string;
|
|
3003
|
+
isRequired: boolean;
|
|
3004
|
+
name: string;
|
|
3005
|
+
type: string;
|
|
3006
|
+
}[];
|
|
3007
|
+
returnDescription: string;
|
|
3008
|
+
returnType: string;
|
|
3009
|
+
description?: undefined;
|
|
3192
3010
|
} | {
|
|
3193
3011
|
description: string;
|
|
3194
3012
|
name: string;
|
|
@@ -3212,28 +3030,13 @@ export declare const interfaces: {
|
|
|
3212
3030
|
properties: any[];
|
|
3213
3031
|
url: string;
|
|
3214
3032
|
};
|
|
3215
|
-
|
|
3216
|
-
deprecatedDescription: string;
|
|
3217
|
-
description: string;
|
|
3033
|
+
ifcompositor: {
|
|
3218
3034
|
implementers: {
|
|
3219
3035
|
description: string;
|
|
3220
3036
|
name: string;
|
|
3221
3037
|
url: string;
|
|
3222
3038
|
}[];
|
|
3223
|
-
isDeprecated: boolean;
|
|
3224
3039
|
methods: ({
|
|
3225
|
-
description: string;
|
|
3226
|
-
name: string;
|
|
3227
|
-
params: {
|
|
3228
|
-
default: any;
|
|
3229
|
-
description: string;
|
|
3230
|
-
isRequired: boolean;
|
|
3231
|
-
name: string;
|
|
3232
|
-
type: string;
|
|
3233
|
-
}[];
|
|
3234
|
-
returnDescription: string;
|
|
3235
|
-
returnType: string;
|
|
3236
|
-
} | {
|
|
3237
3040
|
description: string;
|
|
3238
3041
|
name: string;
|
|
3239
3042
|
params: {
|
|
@@ -3255,25 +3058,14 @@ export declare const interfaces: {
|
|
|
3255
3058
|
name: string;
|
|
3256
3059
|
type: string;
|
|
3257
3060
|
}[];
|
|
3258
|
-
returnDescription
|
|
3259
|
-
returnType?: undefined;
|
|
3260
|
-
} | {
|
|
3261
|
-
description: string;
|
|
3262
|
-
name: string;
|
|
3263
|
-
params: {
|
|
3264
|
-
default: any;
|
|
3265
|
-
isRequired: boolean;
|
|
3266
|
-
name: string;
|
|
3267
|
-
type: string;
|
|
3268
|
-
}[];
|
|
3061
|
+
returnDescription: string;
|
|
3269
3062
|
returnType: string;
|
|
3270
|
-
returnDescription?: undefined;
|
|
3271
3063
|
})[];
|
|
3272
3064
|
name: string;
|
|
3273
3065
|
properties: any[];
|
|
3274
3066
|
url: string;
|
|
3275
3067
|
};
|
|
3276
|
-
|
|
3068
|
+
ifdatetime: {
|
|
3277
3069
|
implementers: {
|
|
3278
3070
|
description: string;
|
|
3279
3071
|
name: string;
|
|
@@ -3289,8 +3081,8 @@ export declare const interfaces: {
|
|
|
3289
3081
|
name: string;
|
|
3290
3082
|
type: string;
|
|
3291
3083
|
}[];
|
|
3084
|
+
returnDescription: string;
|
|
3292
3085
|
returnType: string;
|
|
3293
|
-
returnDescription?: undefined;
|
|
3294
3086
|
} | {
|
|
3295
3087
|
description: string;
|
|
3296
3088
|
name: string;
|
|
@@ -3301,6 +3093,17 @@ export declare const interfaces: {
|
|
|
3301
3093
|
name: string;
|
|
3302
3094
|
type: string;
|
|
3303
3095
|
}[];
|
|
3096
|
+
returnType: string;
|
|
3097
|
+
returnDescription?: undefined;
|
|
3098
|
+
} | {
|
|
3099
|
+
description: string;
|
|
3100
|
+
name: string;
|
|
3101
|
+
params: {
|
|
3102
|
+
default: any;
|
|
3103
|
+
isRequired: boolean;
|
|
3104
|
+
name: string;
|
|
3105
|
+
type: string;
|
|
3106
|
+
}[];
|
|
3304
3107
|
returnDescription: string;
|
|
3305
3108
|
returnType: string;
|
|
3306
3109
|
})[];
|
|
@@ -3308,13 +3111,13 @@ export declare const interfaces: {
|
|
|
3308
3111
|
properties: any[];
|
|
3309
3112
|
url: string;
|
|
3310
3113
|
};
|
|
3311
|
-
|
|
3114
|
+
ifdevicecrypto: {
|
|
3312
3115
|
implementers: {
|
|
3313
3116
|
description: string;
|
|
3314
3117
|
name: string;
|
|
3315
3118
|
url: string;
|
|
3316
3119
|
}[];
|
|
3317
|
-
methods:
|
|
3120
|
+
methods: {
|
|
3318
3121
|
description: string;
|
|
3319
3122
|
name: string;
|
|
3320
3123
|
params: {
|
|
@@ -3326,30 +3129,7 @@ export declare const interfaces: {
|
|
|
3326
3129
|
}[];
|
|
3327
3130
|
returnDescription: string;
|
|
3328
3131
|
returnType: string;
|
|
3329
|
-
} | {
|
|
3330
|
-
description: string;
|
|
3331
|
-
name: string;
|
|
3332
|
-
params: {
|
|
3333
|
-
default: any;
|
|
3334
|
-
description: string;
|
|
3335
|
-
isRequired: boolean;
|
|
3336
|
-
name: string;
|
|
3337
|
-
type: string;
|
|
3338
|
-
}[];
|
|
3339
|
-
returnType: string;
|
|
3340
|
-
returnDescription?: undefined;
|
|
3341
|
-
})[];
|
|
3342
|
-
name: string;
|
|
3343
|
-
properties: any[];
|
|
3344
|
-
url: string;
|
|
3345
|
-
};
|
|
3346
|
-
ifdevicecrypto: {
|
|
3347
|
-
implementers: {
|
|
3348
|
-
description: string;
|
|
3349
|
-
name: string;
|
|
3350
|
-
url: string;
|
|
3351
3132
|
}[];
|
|
3352
|
-
methods: any[];
|
|
3353
3133
|
name: string;
|
|
3354
3134
|
properties: any[];
|
|
3355
3135
|
url: string;
|
|
@@ -3361,18 +3141,6 @@ export declare const interfaces: {
|
|
|
3361
3141
|
url: string;
|
|
3362
3142
|
}[];
|
|
3363
3143
|
methods: ({
|
|
3364
|
-
description: string;
|
|
3365
|
-
name: string;
|
|
3366
|
-
params: {
|
|
3367
|
-
default: any;
|
|
3368
|
-
isRequired: boolean;
|
|
3369
|
-
name: string;
|
|
3370
|
-
}[];
|
|
3371
|
-
returnDescription: string;
|
|
3372
|
-
returnType?: undefined;
|
|
3373
|
-
deprecatedDescription?: undefined;
|
|
3374
|
-
isDeprecated?: undefined;
|
|
3375
|
-
} | {
|
|
3376
3144
|
description: string;
|
|
3377
3145
|
name: string;
|
|
3378
3146
|
params: {
|
|
@@ -3386,20 +3154,6 @@ export declare const interfaces: {
|
|
|
3386
3154
|
returnType: string;
|
|
3387
3155
|
deprecatedDescription?: undefined;
|
|
3388
3156
|
isDeprecated?: undefined;
|
|
3389
|
-
} | {
|
|
3390
|
-
description: string;
|
|
3391
|
-
name: string;
|
|
3392
|
-
params: {
|
|
3393
|
-
default: any;
|
|
3394
|
-
description: string;
|
|
3395
|
-
isRequired: boolean;
|
|
3396
|
-
name: string;
|
|
3397
|
-
type: string;
|
|
3398
|
-
}[];
|
|
3399
|
-
returnDescription: string;
|
|
3400
|
-
returnType?: undefined;
|
|
3401
|
-
deprecatedDescription?: undefined;
|
|
3402
|
-
isDeprecated?: undefined;
|
|
3403
3157
|
} | {
|
|
3404
3158
|
description: string;
|
|
3405
3159
|
name: string;
|
|
@@ -3500,7 +3254,9 @@ export declare const interfaces: {
|
|
|
3500
3254
|
properties: any[];
|
|
3501
3255
|
url: string;
|
|
3502
3256
|
};
|
|
3503
|
-
|
|
3257
|
+
ifdsa: {
|
|
3258
|
+
availableSince: string;
|
|
3259
|
+
description: string;
|
|
3504
3260
|
implementers: {
|
|
3505
3261
|
description: string;
|
|
3506
3262
|
name: string;
|
|
@@ -3509,27 +3265,15 @@ export declare const interfaces: {
|
|
|
3509
3265
|
methods: ({
|
|
3510
3266
|
description: string;
|
|
3511
3267
|
name: string;
|
|
3512
|
-
params:
|
|
3268
|
+
params: {
|
|
3269
|
+
default: any;
|
|
3270
|
+
isRequired: boolean;
|
|
3271
|
+
name: string;
|
|
3272
|
+
type: string;
|
|
3273
|
+
}[];
|
|
3513
3274
|
returnDescription: string;
|
|
3514
3275
|
returnType: string;
|
|
3515
3276
|
} | {
|
|
3516
|
-
description: string;
|
|
3517
|
-
name: string;
|
|
3518
|
-
params: any[];
|
|
3519
|
-
returnType: string;
|
|
3520
|
-
returnDescription?: undefined;
|
|
3521
|
-
})[];
|
|
3522
|
-
name: string;
|
|
3523
|
-
properties: any[];
|
|
3524
|
-
url: string;
|
|
3525
|
-
};
|
|
3526
|
-
ifevpcipher: {
|
|
3527
|
-
implementers: {
|
|
3528
|
-
description: string;
|
|
3529
|
-
name: string;
|
|
3530
|
-
url: string;
|
|
3531
|
-
}[];
|
|
3532
|
-
methods: {
|
|
3533
3277
|
description: string;
|
|
3534
3278
|
name: string;
|
|
3535
3279
|
params: {
|
|
@@ -3541,12 +3285,24 @@ export declare const interfaces: {
|
|
|
3541
3285
|
}[];
|
|
3542
3286
|
returnDescription: string;
|
|
3543
3287
|
returnType: string;
|
|
3544
|
-
}
|
|
3288
|
+
} | {
|
|
3289
|
+
name: string;
|
|
3290
|
+
params: {
|
|
3291
|
+
default: any;
|
|
3292
|
+
description: string;
|
|
3293
|
+
isRequired: boolean;
|
|
3294
|
+
name: string;
|
|
3295
|
+
type: string;
|
|
3296
|
+
}[];
|
|
3297
|
+
returnDescription: string;
|
|
3298
|
+
returnType: string;
|
|
3299
|
+
description?: undefined;
|
|
3300
|
+
})[];
|
|
3545
3301
|
name: string;
|
|
3546
3302
|
properties: any[];
|
|
3547
3303
|
url: string;
|
|
3548
3304
|
};
|
|
3549
|
-
|
|
3305
|
+
ifenum: {
|
|
3550
3306
|
implementers: {
|
|
3551
3307
|
description: string;
|
|
3552
3308
|
name: string;
|
|
@@ -3555,25 +3311,13 @@ export declare const interfaces: {
|
|
|
3555
3311
|
methods: ({
|
|
3556
3312
|
description: string;
|
|
3557
3313
|
name: string;
|
|
3558
|
-
params:
|
|
3559
|
-
default: any;
|
|
3560
|
-
description: string;
|
|
3561
|
-
isRequired: boolean;
|
|
3562
|
-
name: string;
|
|
3563
|
-
type: string;
|
|
3564
|
-
}[];
|
|
3314
|
+
params: any[];
|
|
3565
3315
|
returnDescription: string;
|
|
3566
3316
|
returnType: string;
|
|
3567
3317
|
} | {
|
|
3568
3318
|
description: string;
|
|
3569
3319
|
name: string;
|
|
3570
|
-
params:
|
|
3571
|
-
default: any;
|
|
3572
|
-
description: string;
|
|
3573
|
-
isRequired: boolean;
|
|
3574
|
-
name: string;
|
|
3575
|
-
type: string;
|
|
3576
|
-
}[];
|
|
3320
|
+
params: any[];
|
|
3577
3321
|
returnType: string;
|
|
3578
3322
|
returnDescription?: undefined;
|
|
3579
3323
|
})[];
|
|
@@ -3581,7 +3325,7 @@ export declare const interfaces: {
|
|
|
3581
3325
|
properties: any[];
|
|
3582
3326
|
url: string;
|
|
3583
3327
|
};
|
|
3584
|
-
|
|
3328
|
+
ifevpcipher: {
|
|
3585
3329
|
implementers: {
|
|
3586
3330
|
description: string;
|
|
3587
3331
|
name: string;
|
|
@@ -3604,8 +3348,7 @@ export declare const interfaces: {
|
|
|
3604
3348
|
properties: any[];
|
|
3605
3349
|
url: string;
|
|
3606
3350
|
};
|
|
3607
|
-
|
|
3608
|
-
description: string;
|
|
3351
|
+
ifevpdigest: {
|
|
3609
3352
|
implementers: {
|
|
3610
3353
|
description: string;
|
|
3611
3354
|
name: string;
|
|
@@ -3614,7 +3357,13 @@ export declare const interfaces: {
|
|
|
3614
3357
|
methods: ({
|
|
3615
3358
|
description: string;
|
|
3616
3359
|
name: string;
|
|
3617
|
-
params:
|
|
3360
|
+
params: {
|
|
3361
|
+
default: any;
|
|
3362
|
+
description: string;
|
|
3363
|
+
isRequired: boolean;
|
|
3364
|
+
name: string;
|
|
3365
|
+
type: string;
|
|
3366
|
+
}[];
|
|
3618
3367
|
returnDescription: string;
|
|
3619
3368
|
returnType: string;
|
|
3620
3369
|
} | {
|
|
@@ -3634,7 +3383,7 @@ export declare const interfaces: {
|
|
|
3634
3383
|
properties: any[];
|
|
3635
3384
|
url: string;
|
|
3636
3385
|
};
|
|
3637
|
-
|
|
3386
|
+
iffilesystem: {
|
|
3638
3387
|
implementers: {
|
|
3639
3388
|
description: string;
|
|
3640
3389
|
name: string;
|
|
@@ -3657,16 +3406,20 @@ export declare const interfaces: {
|
|
|
3657
3406
|
properties: any[];
|
|
3658
3407
|
url: string;
|
|
3659
3408
|
};
|
|
3660
|
-
|
|
3661
|
-
deprecatedDescription: string;
|
|
3409
|
+
iffloat: {
|
|
3662
3410
|
description: string;
|
|
3663
3411
|
implementers: {
|
|
3664
3412
|
description: string;
|
|
3665
3413
|
name: string;
|
|
3666
3414
|
url: string;
|
|
3667
3415
|
}[];
|
|
3668
|
-
|
|
3669
|
-
|
|
3416
|
+
methods: ({
|
|
3417
|
+
description: string;
|
|
3418
|
+
name: string;
|
|
3419
|
+
params: any[];
|
|
3420
|
+
returnDescription: string;
|
|
3421
|
+
returnType: string;
|
|
3422
|
+
} | {
|
|
3670
3423
|
description: string;
|
|
3671
3424
|
name: string;
|
|
3672
3425
|
params: {
|
|
@@ -3676,7 +3429,27 @@ export declare const interfaces: {
|
|
|
3676
3429
|
name: string;
|
|
3677
3430
|
type: string;
|
|
3678
3431
|
}[];
|
|
3679
|
-
|
|
3432
|
+
returnType: string;
|
|
3433
|
+
returnDescription?: undefined;
|
|
3434
|
+
})[];
|
|
3435
|
+
name: string;
|
|
3436
|
+
properties: any[];
|
|
3437
|
+
url: string;
|
|
3438
|
+
};
|
|
3439
|
+
iffont: {
|
|
3440
|
+
implementers: {
|
|
3441
|
+
description: string;
|
|
3442
|
+
name: string;
|
|
3443
|
+
url: string;
|
|
3444
|
+
}[];
|
|
3445
|
+
methods: {
|
|
3446
|
+
name: string;
|
|
3447
|
+
params: {
|
|
3448
|
+
default: any;
|
|
3449
|
+
isRequired: boolean;
|
|
3450
|
+
name: string;
|
|
3451
|
+
type: string;
|
|
3452
|
+
}[];
|
|
3680
3453
|
returnType: string;
|
|
3681
3454
|
}[];
|
|
3682
3455
|
name: string;
|
|
@@ -3755,55 +3528,6 @@ export declare const interfaces: {
|
|
|
3755
3528
|
properties: any[];
|
|
3756
3529
|
url: string;
|
|
3757
3530
|
};
|
|
3758
|
-
ifgridscreen: {
|
|
3759
|
-
deprecatedDescription: string;
|
|
3760
|
-
description: string;
|
|
3761
|
-
implementers: {
|
|
3762
|
-
description: string;
|
|
3763
|
-
name: string;
|
|
3764
|
-
url: string;
|
|
3765
|
-
}[];
|
|
3766
|
-
isDeprecated: boolean;
|
|
3767
|
-
methods: ({
|
|
3768
|
-
name: string;
|
|
3769
|
-
params: any[];
|
|
3770
|
-
returnType: string;
|
|
3771
|
-
description?: undefined;
|
|
3772
|
-
returnDescription?: undefined;
|
|
3773
|
-
} | {
|
|
3774
|
-
description: string;
|
|
3775
|
-
name: string;
|
|
3776
|
-
params: {
|
|
3777
|
-
default: any;
|
|
3778
|
-
description: string;
|
|
3779
|
-
isRequired: boolean;
|
|
3780
|
-
name: string;
|
|
3781
|
-
type: string;
|
|
3782
|
-
}[];
|
|
3783
|
-
returnType: string;
|
|
3784
|
-
returnDescription?: undefined;
|
|
3785
|
-
} | {
|
|
3786
|
-
description: string;
|
|
3787
|
-
name: string;
|
|
3788
|
-
params: {
|
|
3789
|
-
default: any;
|
|
3790
|
-
isRequired: boolean;
|
|
3791
|
-
name: string;
|
|
3792
|
-
type: string;
|
|
3793
|
-
}[];
|
|
3794
|
-
returnType: string;
|
|
3795
|
-
returnDescription?: undefined;
|
|
3796
|
-
} | {
|
|
3797
|
-
description: string;
|
|
3798
|
-
name: string;
|
|
3799
|
-
params: any[];
|
|
3800
|
-
returnDescription: string;
|
|
3801
|
-
returnType: string;
|
|
3802
|
-
})[];
|
|
3803
|
-
name: string;
|
|
3804
|
-
properties: any[];
|
|
3805
|
-
url: string;
|
|
3806
|
-
};
|
|
3807
3531
|
ifhdmistatus: {
|
|
3808
3532
|
implementers: {
|
|
3809
3533
|
description: string;
|
|
@@ -3910,15 +3634,12 @@ export declare const interfaces: {
|
|
|
3910
3634
|
properties: any[];
|
|
3911
3635
|
url: string;
|
|
3912
3636
|
};
|
|
3913
|
-
|
|
3914
|
-
deprecatedDescription: string;
|
|
3915
|
-
description: string;
|
|
3637
|
+
ifimagemetadata: {
|
|
3916
3638
|
implementers: {
|
|
3917
3639
|
description: string;
|
|
3918
3640
|
name: string;
|
|
3919
3641
|
url: string;
|
|
3920
3642
|
}[];
|
|
3921
|
-
isDeprecated: boolean;
|
|
3922
3643
|
methods: ({
|
|
3923
3644
|
description: string;
|
|
3924
3645
|
name: string;
|
|
@@ -3943,18 +3664,12 @@ export declare const interfaces: {
|
|
|
3943
3664
|
}[];
|
|
3944
3665
|
returnType: string;
|
|
3945
3666
|
returnDescription?: undefined;
|
|
3946
|
-
} | {
|
|
3947
|
-
name: string;
|
|
3948
|
-
params: any[];
|
|
3949
|
-
returnType: string;
|
|
3950
|
-
description?: undefined;
|
|
3951
|
-
returnDescription?: undefined;
|
|
3952
3667
|
})[];
|
|
3953
3668
|
name: string;
|
|
3954
3669
|
properties: any[];
|
|
3955
3670
|
url: string;
|
|
3956
3671
|
};
|
|
3957
|
-
|
|
3672
|
+
ifinput: {
|
|
3958
3673
|
implementers: {
|
|
3959
3674
|
description: string;
|
|
3960
3675
|
name: string;
|
|
@@ -3965,7 +3680,6 @@ export declare const interfaces: {
|
|
|
3965
3680
|
name: string;
|
|
3966
3681
|
params: {
|
|
3967
3682
|
default: any;
|
|
3968
|
-
description: string;
|
|
3969
3683
|
isRequired: boolean;
|
|
3970
3684
|
name: string;
|
|
3971
3685
|
type: string;
|
|
@@ -3989,7 +3703,8 @@ export declare const interfaces: {
|
|
|
3989
3703
|
properties: any[];
|
|
3990
3704
|
url: string;
|
|
3991
3705
|
};
|
|
3992
|
-
|
|
3706
|
+
ifint: {
|
|
3707
|
+
description: string;
|
|
3993
3708
|
implementers: {
|
|
3994
3709
|
description: string;
|
|
3995
3710
|
name: string;
|
|
@@ -4001,16 +3716,6 @@ export declare const interfaces: {
|
|
|
4001
3716
|
params: any[];
|
|
4002
3717
|
returnDescription: string;
|
|
4003
3718
|
returnType: string;
|
|
4004
|
-
} | {
|
|
4005
|
-
description: string;
|
|
4006
|
-
name: string;
|
|
4007
|
-
params: {
|
|
4008
|
-
default: any;
|
|
4009
|
-
isRequired: boolean;
|
|
4010
|
-
name: string;
|
|
4011
|
-
}[];
|
|
4012
|
-
returnDescription: string;
|
|
4013
|
-
returnType?: undefined;
|
|
4014
3719
|
} | {
|
|
4015
3720
|
description: string;
|
|
4016
3721
|
name: string;
|
|
@@ -4028,37 +3733,58 @@ export declare const interfaces: {
|
|
|
4028
3733
|
properties: any[];
|
|
4029
3734
|
url: string;
|
|
4030
3735
|
};
|
|
4031
|
-
|
|
4032
|
-
description: string;
|
|
3736
|
+
ifintops: {
|
|
4033
3737
|
implementers: {
|
|
4034
3738
|
description: string;
|
|
4035
3739
|
name: string;
|
|
4036
3740
|
url: string;
|
|
4037
3741
|
}[];
|
|
4038
|
-
methods:
|
|
3742
|
+
methods: {
|
|
4039
3743
|
description: string;
|
|
4040
3744
|
name: string;
|
|
4041
3745
|
params: any[];
|
|
4042
3746
|
returnDescription: string;
|
|
4043
3747
|
returnType: string;
|
|
4044
|
-
}
|
|
3748
|
+
}[];
|
|
3749
|
+
name: string;
|
|
3750
|
+
properties: any[];
|
|
3751
|
+
url: string;
|
|
3752
|
+
};
|
|
3753
|
+
iflist: {
|
|
3754
|
+
implementers: {
|
|
3755
|
+
description: string;
|
|
3756
|
+
name: string;
|
|
3757
|
+
url: string;
|
|
3758
|
+
}[];
|
|
3759
|
+
methods: ({
|
|
4045
3760
|
description: string;
|
|
4046
3761
|
name: string;
|
|
4047
3762
|
params: {
|
|
4048
3763
|
default: any;
|
|
4049
|
-
description: string;
|
|
4050
3764
|
isRequired: boolean;
|
|
4051
3765
|
name: string;
|
|
4052
3766
|
type: string;
|
|
4053
3767
|
}[];
|
|
4054
3768
|
returnType: string;
|
|
4055
3769
|
returnDescription?: undefined;
|
|
3770
|
+
} | {
|
|
3771
|
+
name: string;
|
|
3772
|
+
params: any[];
|
|
3773
|
+
returnType: string;
|
|
3774
|
+
description?: undefined;
|
|
3775
|
+
returnDescription?: undefined;
|
|
3776
|
+
} | {
|
|
3777
|
+
description: string;
|
|
3778
|
+
name: string;
|
|
3779
|
+
params: any[];
|
|
3780
|
+
returnDescription: string;
|
|
3781
|
+
returnType: string;
|
|
4056
3782
|
})[];
|
|
4057
3783
|
name: string;
|
|
4058
3784
|
properties: any[];
|
|
4059
3785
|
url: string;
|
|
4060
3786
|
};
|
|
4061
|
-
|
|
3787
|
+
iflisttoarray: {
|
|
4062
3788
|
implementers: {
|
|
4063
3789
|
description: string;
|
|
4064
3790
|
name: string;
|
|
@@ -4075,15 +3801,13 @@ export declare const interfaces: {
|
|
|
4075
3801
|
properties: any[];
|
|
4076
3802
|
url: string;
|
|
4077
3803
|
};
|
|
4078
|
-
|
|
4079
|
-
description: string;
|
|
3804
|
+
iflocalization: {
|
|
4080
3805
|
implementers: {
|
|
4081
3806
|
description: string;
|
|
4082
3807
|
name: string;
|
|
4083
3808
|
url: string;
|
|
4084
3809
|
}[];
|
|
4085
3810
|
methods: ({
|
|
4086
|
-
description: string;
|
|
4087
3811
|
name: string;
|
|
4088
3812
|
params: {
|
|
4089
3813
|
default: any;
|
|
@@ -4092,92 +3816,84 @@ export declare const interfaces: {
|
|
|
4092
3816
|
name: string;
|
|
4093
3817
|
type: string;
|
|
4094
3818
|
}[];
|
|
4095
|
-
|
|
4096
|
-
returnDescription?: undefined;
|
|
4097
|
-
} | {
|
|
4098
|
-
name: string;
|
|
4099
|
-
params: any[];
|
|
3819
|
+
returnDescription: string;
|
|
4100
3820
|
returnType: string;
|
|
4101
3821
|
description?: undefined;
|
|
4102
|
-
returnDescription?: undefined;
|
|
4103
3822
|
} | {
|
|
4104
3823
|
description: string;
|
|
4105
|
-
name: string;
|
|
4106
|
-
params: any[];
|
|
4107
|
-
returnDescription: string;
|
|
4108
|
-
returnType: string;
|
|
4109
|
-
} | {
|
|
4110
3824
|
name: string;
|
|
4111
3825
|
params: {
|
|
4112
3826
|
default: any;
|
|
4113
|
-
description: string;
|
|
4114
3827
|
isRequired: boolean;
|
|
4115
3828
|
name: string;
|
|
4116
3829
|
type: string;
|
|
4117
3830
|
}[];
|
|
4118
3831
|
returnDescription: string;
|
|
4119
3832
|
returnType: string;
|
|
4120
|
-
description?: undefined;
|
|
4121
3833
|
})[];
|
|
4122
3834
|
name: string;
|
|
4123
3835
|
properties: any[];
|
|
4124
3836
|
url: string;
|
|
4125
3837
|
};
|
|
4126
|
-
|
|
3838
|
+
iflongint: {
|
|
4127
3839
|
implementers: {
|
|
4128
3840
|
description: string;
|
|
4129
3841
|
name: string;
|
|
4130
3842
|
url: string;
|
|
4131
3843
|
}[];
|
|
4132
3844
|
methods: ({
|
|
3845
|
+
description: string;
|
|
3846
|
+
name: string;
|
|
3847
|
+
params: any[];
|
|
3848
|
+
returnDescription: string;
|
|
3849
|
+
returnType: string;
|
|
3850
|
+
} | {
|
|
4133
3851
|
description: string;
|
|
4134
3852
|
name: string;
|
|
4135
3853
|
params: {
|
|
4136
3854
|
default: any;
|
|
3855
|
+
description: string;
|
|
4137
3856
|
isRequired: boolean;
|
|
4138
3857
|
name: string;
|
|
4139
3858
|
type: string;
|
|
4140
3859
|
}[];
|
|
4141
3860
|
returnType: string;
|
|
4142
3861
|
returnDescription?: undefined;
|
|
4143
|
-
} | {
|
|
4144
|
-
name: string;
|
|
4145
|
-
params: any[];
|
|
4146
|
-
returnType: string;
|
|
4147
|
-
description?: undefined;
|
|
4148
|
-
returnDescription?: undefined;
|
|
4149
|
-
} | {
|
|
4150
|
-
description: string;
|
|
4151
|
-
name: string;
|
|
4152
|
-
params: any[];
|
|
4153
|
-
returnDescription: string;
|
|
4154
|
-
returnType: string;
|
|
4155
3862
|
})[];
|
|
4156
3863
|
name: string;
|
|
4157
3864
|
properties: any[];
|
|
4158
3865
|
url: string;
|
|
4159
3866
|
};
|
|
4160
|
-
|
|
4161
|
-
deprecatedDescription: string;
|
|
4162
|
-
description: string;
|
|
3867
|
+
ifmessageport: {
|
|
4163
3868
|
implementers: {
|
|
4164
3869
|
description: string;
|
|
4165
3870
|
name: string;
|
|
4166
3871
|
url: string;
|
|
4167
3872
|
}[];
|
|
4168
|
-
|
|
4169
|
-
methods: ({
|
|
3873
|
+
methods: {
|
|
4170
3874
|
description: string;
|
|
4171
3875
|
name: string;
|
|
4172
3876
|
params: {
|
|
4173
3877
|
default: any;
|
|
3878
|
+
description: string;
|
|
4174
3879
|
isRequired: boolean;
|
|
4175
3880
|
name: string;
|
|
4176
3881
|
type: string;
|
|
4177
3882
|
}[];
|
|
3883
|
+
returnDescription: string;
|
|
4178
3884
|
returnType: string;
|
|
4179
|
-
|
|
4180
|
-
|
|
3885
|
+
}[];
|
|
3886
|
+
name: string;
|
|
3887
|
+
properties: any[];
|
|
3888
|
+
url: string;
|
|
3889
|
+
};
|
|
3890
|
+
ifmicrophone: {
|
|
3891
|
+
implementers: {
|
|
3892
|
+
description: string;
|
|
3893
|
+
name: string;
|
|
3894
|
+
url: string;
|
|
3895
|
+
}[];
|
|
3896
|
+
methods: ({
|
|
4181
3897
|
description: string;
|
|
4182
3898
|
name: string;
|
|
4183
3899
|
params: {
|
|
@@ -4187,31 +3903,27 @@ export declare const interfaces: {
|
|
|
4187
3903
|
name: string;
|
|
4188
3904
|
type: string;
|
|
4189
3905
|
}[];
|
|
3906
|
+
returnDescription: string;
|
|
4190
3907
|
returnType: string;
|
|
4191
|
-
returnDescription?: undefined;
|
|
4192
3908
|
} | {
|
|
3909
|
+
description: string;
|
|
4193
3910
|
name: string;
|
|
4194
3911
|
params: {
|
|
4195
3912
|
default: any;
|
|
3913
|
+
description: string;
|
|
4196
3914
|
isRequired: boolean;
|
|
4197
3915
|
name: string;
|
|
4198
3916
|
type: string;
|
|
4199
3917
|
}[];
|
|
4200
3918
|
returnType: string;
|
|
4201
|
-
description?: undefined;
|
|
4202
3919
|
returnDescription?: undefined;
|
|
4203
|
-
} | {
|
|
4204
|
-
description: string;
|
|
4205
|
-
name: string;
|
|
4206
|
-
params: any[];
|
|
4207
|
-
returnDescription: string;
|
|
4208
|
-
returnType: string;
|
|
4209
3920
|
})[];
|
|
4210
3921
|
name: string;
|
|
4211
3922
|
properties: any[];
|
|
4212
3923
|
url: string;
|
|
4213
3924
|
};
|
|
4214
|
-
|
|
3925
|
+
ifpath: {
|
|
3926
|
+
description: string;
|
|
4215
3927
|
implementers: {
|
|
4216
3928
|
description: string;
|
|
4217
3929
|
name: string;
|
|
@@ -4220,21 +3932,28 @@ export declare const interfaces: {
|
|
|
4220
3932
|
methods: {
|
|
4221
3933
|
description: string;
|
|
4222
3934
|
name: string;
|
|
4223
|
-
params:
|
|
4224
|
-
|
|
4225
|
-
|
|
4226
|
-
|
|
4227
|
-
|
|
3935
|
+
params: {
|
|
3936
|
+
default: any;
|
|
3937
|
+
description: string;
|
|
3938
|
+
isRequired: boolean;
|
|
3939
|
+
name: string;
|
|
3940
|
+
type: string;
|
|
3941
|
+
}[];
|
|
3942
|
+
returnDescription: string;
|
|
3943
|
+
returnType: string;
|
|
3944
|
+
}[];
|
|
3945
|
+
name: string;
|
|
4228
3946
|
properties: any[];
|
|
4229
3947
|
url: string;
|
|
4230
3948
|
};
|
|
4231
|
-
|
|
3949
|
+
ifprogramguide: {
|
|
4232
3950
|
implementers: {
|
|
4233
3951
|
description: string;
|
|
4234
3952
|
name: string;
|
|
4235
3953
|
url: string;
|
|
4236
3954
|
}[];
|
|
4237
3955
|
methods: ({
|
|
3956
|
+
description: string;
|
|
4238
3957
|
name: string;
|
|
4239
3958
|
params: {
|
|
4240
3959
|
default: any;
|
|
@@ -4243,14 +3962,14 @@ export declare const interfaces: {
|
|
|
4243
3962
|
name: string;
|
|
4244
3963
|
type: string;
|
|
4245
3964
|
}[];
|
|
4246
|
-
returnDescription: string;
|
|
4247
3965
|
returnType: string;
|
|
4248
|
-
|
|
3966
|
+
returnDescription?: undefined;
|
|
4249
3967
|
} | {
|
|
4250
3968
|
description: string;
|
|
4251
3969
|
name: string;
|
|
4252
3970
|
params: {
|
|
4253
3971
|
default: any;
|
|
3972
|
+
description: string;
|
|
4254
3973
|
isRequired: boolean;
|
|
4255
3974
|
name: string;
|
|
4256
3975
|
type: string;
|
|
@@ -4262,19 +3981,14 @@ export declare const interfaces: {
|
|
|
4262
3981
|
properties: any[];
|
|
4263
3982
|
url: string;
|
|
4264
3983
|
};
|
|
4265
|
-
|
|
3984
|
+
ifregex: {
|
|
3985
|
+
description: string;
|
|
4266
3986
|
implementers: {
|
|
4267
3987
|
description: string;
|
|
4268
3988
|
name: string;
|
|
4269
3989
|
url: string;
|
|
4270
3990
|
}[];
|
|
4271
|
-
methods:
|
|
4272
|
-
description: string;
|
|
4273
|
-
name: string;
|
|
4274
|
-
params: any[];
|
|
4275
|
-
returnDescription: string;
|
|
4276
|
-
returnType: string;
|
|
4277
|
-
} | {
|
|
3991
|
+
methods: {
|
|
4278
3992
|
description: string;
|
|
4279
3993
|
name: string;
|
|
4280
3994
|
params: {
|
|
@@ -4284,15 +3998,14 @@ export declare const interfaces: {
|
|
|
4284
3998
|
name: string;
|
|
4285
3999
|
type: string;
|
|
4286
4000
|
}[];
|
|
4001
|
+
returnDescription: string;
|
|
4287
4002
|
returnType: string;
|
|
4288
|
-
|
|
4289
|
-
})[];
|
|
4003
|
+
}[];
|
|
4290
4004
|
name: string;
|
|
4291
4005
|
properties: any[];
|
|
4292
4006
|
url: string;
|
|
4293
4007
|
};
|
|
4294
|
-
|
|
4295
|
-
description: string;
|
|
4008
|
+
ifregion: {
|
|
4296
4009
|
implementers: {
|
|
4297
4010
|
description: string;
|
|
4298
4011
|
name: string;
|
|
@@ -4301,43 +4014,21 @@ export declare const interfaces: {
|
|
|
4301
4014
|
methods: ({
|
|
4302
4015
|
description: string;
|
|
4303
4016
|
name: string;
|
|
4304
|
-
params:
|
|
4305
|
-
default: any;
|
|
4306
|
-
description: string;
|
|
4307
|
-
isRequired: boolean;
|
|
4308
|
-
name: string;
|
|
4309
|
-
type: string;
|
|
4310
|
-
}[];
|
|
4311
|
-
returnDescription: string;
|
|
4312
|
-
returnType: string;
|
|
4313
|
-
} | {
|
|
4314
|
-
description: string;
|
|
4315
|
-
name: string;
|
|
4316
|
-
params: {
|
|
4317
|
-
default: any;
|
|
4318
|
-
isRequired: boolean;
|
|
4319
|
-
name: string;
|
|
4320
|
-
type: string;
|
|
4321
|
-
}[];
|
|
4017
|
+
params: any[];
|
|
4322
4018
|
returnDescription: string;
|
|
4323
4019
|
returnType: string;
|
|
4324
4020
|
} | {
|
|
4325
|
-
description: string;
|
|
4326
4021
|
name: string;
|
|
4327
|
-
params:
|
|
4328
|
-
default: any;
|
|
4329
|
-
description: string;
|
|
4330
|
-
isRequired: boolean;
|
|
4331
|
-
name: string;
|
|
4332
|
-
type: string;
|
|
4333
|
-
}[];
|
|
4022
|
+
params: any[];
|
|
4334
4023
|
returnType: string;
|
|
4024
|
+
description?: undefined;
|
|
4335
4025
|
returnDescription?: undefined;
|
|
4336
4026
|
} | {
|
|
4337
4027
|
description: string;
|
|
4338
4028
|
name: string;
|
|
4339
4029
|
params: {
|
|
4340
4030
|
default: any;
|
|
4031
|
+
description: string;
|
|
4341
4032
|
isRequired: boolean;
|
|
4342
4033
|
name: string;
|
|
4343
4034
|
type: string;
|
|
@@ -4349,7 +4040,7 @@ export declare const interfaces: {
|
|
|
4349
4040
|
properties: any[];
|
|
4350
4041
|
url: string;
|
|
4351
4042
|
};
|
|
4352
|
-
|
|
4043
|
+
ifregistry: {
|
|
4353
4044
|
implementers: {
|
|
4354
4045
|
description: string;
|
|
4355
4046
|
name: string;
|
|
@@ -4372,14 +4063,13 @@ export declare const interfaces: {
|
|
|
4372
4063
|
properties: any[];
|
|
4373
4064
|
url: string;
|
|
4374
4065
|
};
|
|
4375
|
-
|
|
4066
|
+
ifregistrysection: {
|
|
4376
4067
|
implementers: {
|
|
4377
4068
|
description: string;
|
|
4378
4069
|
name: string;
|
|
4379
4070
|
url: string;
|
|
4380
4071
|
}[];
|
|
4381
4072
|
methods: ({
|
|
4382
|
-
description: string;
|
|
4383
4073
|
name: string;
|
|
4384
4074
|
params: {
|
|
4385
4075
|
default: any;
|
|
@@ -4390,6 +4080,7 @@ export declare const interfaces: {
|
|
|
4390
4080
|
}[];
|
|
4391
4081
|
returnDescription: string;
|
|
4392
4082
|
returnType: string;
|
|
4083
|
+
description?: undefined;
|
|
4393
4084
|
} | {
|
|
4394
4085
|
description: string;
|
|
4395
4086
|
name: string;
|
|
@@ -4400,22 +4091,31 @@ export declare const interfaces: {
|
|
|
4400
4091
|
name: string;
|
|
4401
4092
|
type: string;
|
|
4402
4093
|
}[];
|
|
4094
|
+
returnDescription: string;
|
|
4095
|
+
returnType: string;
|
|
4096
|
+
} | {
|
|
4097
|
+
description: string;
|
|
4098
|
+
name: string;
|
|
4099
|
+
params: {
|
|
4100
|
+
default: any;
|
|
4101
|
+
isRequired: boolean;
|
|
4102
|
+
name: string;
|
|
4103
|
+
type: string;
|
|
4104
|
+
}[];
|
|
4105
|
+
returnDescription: string;
|
|
4403
4106
|
returnType: string;
|
|
4404
|
-
returnDescription?: undefined;
|
|
4405
4107
|
})[];
|
|
4406
4108
|
name: string;
|
|
4407
4109
|
properties: any[];
|
|
4408
4110
|
url: string;
|
|
4409
4111
|
};
|
|
4410
|
-
|
|
4411
|
-
description: string;
|
|
4112
|
+
ifremoteinfo: {
|
|
4412
4113
|
implementers: {
|
|
4413
4114
|
description: string;
|
|
4414
4115
|
name: string;
|
|
4415
4116
|
url: string;
|
|
4416
4117
|
}[];
|
|
4417
4118
|
methods: ({
|
|
4418
|
-
description: string;
|
|
4419
4119
|
name: string;
|
|
4420
4120
|
params: {
|
|
4421
4121
|
default: any;
|
|
@@ -4424,12 +4124,19 @@ export declare const interfaces: {
|
|
|
4424
4124
|
name: string;
|
|
4425
4125
|
type: string;
|
|
4426
4126
|
}[];
|
|
4127
|
+
returnDescription: string;
|
|
4427
4128
|
returnType: string;
|
|
4428
|
-
|
|
4129
|
+
description?: undefined;
|
|
4429
4130
|
} | {
|
|
4430
4131
|
description: string;
|
|
4431
4132
|
name: string;
|
|
4432
|
-
params:
|
|
4133
|
+
params: {
|
|
4134
|
+
default: any;
|
|
4135
|
+
description: string;
|
|
4136
|
+
isRequired: boolean;
|
|
4137
|
+
name: string;
|
|
4138
|
+
type: string;
|
|
4139
|
+
}[];
|
|
4433
4140
|
returnDescription: string;
|
|
4434
4141
|
returnType: string;
|
|
4435
4142
|
})[];
|
|
@@ -4437,15 +4144,13 @@ export declare const interfaces: {
|
|
|
4437
4144
|
properties: any[];
|
|
4438
4145
|
url: string;
|
|
4439
4146
|
};
|
|
4440
|
-
|
|
4441
|
-
description: string;
|
|
4147
|
+
ifrsa: {
|
|
4442
4148
|
implementers: {
|
|
4443
4149
|
description: string;
|
|
4444
4150
|
name: string;
|
|
4445
4151
|
url: string;
|
|
4446
4152
|
}[];
|
|
4447
4153
|
methods: ({
|
|
4448
|
-
description: string;
|
|
4449
4154
|
name: string;
|
|
4450
4155
|
params: {
|
|
4451
4156
|
default: any;
|
|
@@ -4456,11 +4161,13 @@ export declare const interfaces: {
|
|
|
4456
4161
|
}[];
|
|
4457
4162
|
returnDescription: string;
|
|
4458
4163
|
returnType: string;
|
|
4164
|
+
description?: undefined;
|
|
4459
4165
|
} | {
|
|
4460
4166
|
description: string;
|
|
4461
4167
|
name: string;
|
|
4462
4168
|
params: {
|
|
4463
4169
|
default: any;
|
|
4170
|
+
description: string;
|
|
4464
4171
|
isRequired: boolean;
|
|
4465
4172
|
name: string;
|
|
4466
4173
|
type: string;
|
|
@@ -4468,7 +4175,6 @@ export declare const interfaces: {
|
|
|
4468
4175
|
returnType: string;
|
|
4469
4176
|
returnDescription?: undefined;
|
|
4470
4177
|
} | {
|
|
4471
|
-
description: string;
|
|
4472
4178
|
name: string;
|
|
4473
4179
|
params: {
|
|
4474
4180
|
default: any;
|
|
@@ -4479,24 +4185,42 @@ export declare const interfaces: {
|
|
|
4479
4185
|
}[];
|
|
4480
4186
|
returnType: string;
|
|
4481
4187
|
returnDescription?: undefined;
|
|
4188
|
+
description?: undefined;
|
|
4482
4189
|
} | {
|
|
4190
|
+
description: string;
|
|
4483
4191
|
name: string;
|
|
4484
4192
|
params: {
|
|
4485
4193
|
default: any;
|
|
4194
|
+
description: string;
|
|
4486
4195
|
isRequired: boolean;
|
|
4487
4196
|
name: string;
|
|
4488
4197
|
type: string;
|
|
4489
4198
|
}[];
|
|
4199
|
+
returnDescription: string;
|
|
4490
4200
|
returnType: string;
|
|
4491
|
-
description?: undefined;
|
|
4492
|
-
returnDescription?: undefined;
|
|
4493
4201
|
})[];
|
|
4494
4202
|
name: string;
|
|
4495
4203
|
properties: any[];
|
|
4496
4204
|
url: string;
|
|
4497
4205
|
};
|
|
4498
|
-
|
|
4206
|
+
ifscreen: {
|
|
4499
4207
|
description: string;
|
|
4208
|
+
implementers: {
|
|
4209
|
+
description: string;
|
|
4210
|
+
name: string;
|
|
4211
|
+
url: string;
|
|
4212
|
+
}[];
|
|
4213
|
+
methods: {
|
|
4214
|
+
description: string;
|
|
4215
|
+
name: string;
|
|
4216
|
+
params: any[];
|
|
4217
|
+
returnType: string;
|
|
4218
|
+
}[];
|
|
4219
|
+
name: string;
|
|
4220
|
+
properties: any[];
|
|
4221
|
+
url: string;
|
|
4222
|
+
};
|
|
4223
|
+
ifsetmessageport: {
|
|
4500
4224
|
implementers: {
|
|
4501
4225
|
description: string;
|
|
4502
4226
|
name: string;
|
|
@@ -4512,21 +4236,20 @@ export declare const interfaces: {
|
|
|
4512
4236
|
name: string;
|
|
4513
4237
|
type: string;
|
|
4514
4238
|
}[];
|
|
4515
|
-
returnDescription: string;
|
|
4516
4239
|
returnType: string;
|
|
4517
4240
|
}[];
|
|
4518
4241
|
name: string;
|
|
4519
4242
|
properties: any[];
|
|
4520
4243
|
url: string;
|
|
4521
4244
|
};
|
|
4522
|
-
|
|
4245
|
+
ifsgnodeboundingrect: {
|
|
4523
4246
|
description: string;
|
|
4524
4247
|
implementers: {
|
|
4525
4248
|
description: string;
|
|
4526
4249
|
name: string;
|
|
4527
4250
|
url: string;
|
|
4528
4251
|
}[];
|
|
4529
|
-
methods:
|
|
4252
|
+
methods: {
|
|
4530
4253
|
description: string;
|
|
4531
4254
|
name: string;
|
|
4532
4255
|
params: {
|
|
@@ -4536,26 +4259,14 @@ export declare const interfaces: {
|
|
|
4536
4259
|
name: string;
|
|
4537
4260
|
type: string;
|
|
4538
4261
|
}[];
|
|
4539
|
-
returnType: string;
|
|
4540
|
-
returnDescription?: undefined;
|
|
4541
|
-
} | {
|
|
4542
|
-
name: string;
|
|
4543
|
-
params: any[];
|
|
4544
|
-
returnType: string;
|
|
4545
|
-
description?: undefined;
|
|
4546
|
-
returnDescription?: undefined;
|
|
4547
|
-
} | {
|
|
4548
|
-
description: string;
|
|
4549
|
-
name: string;
|
|
4550
|
-
params: any[];
|
|
4551
4262
|
returnDescription: string;
|
|
4552
4263
|
returnType: string;
|
|
4553
|
-
}
|
|
4264
|
+
}[];
|
|
4554
4265
|
name: string;
|
|
4555
4266
|
properties: any[];
|
|
4556
4267
|
url: string;
|
|
4557
4268
|
};
|
|
4558
|
-
|
|
4269
|
+
ifsgnodechildren: {
|
|
4559
4270
|
description: string;
|
|
4560
4271
|
implementers: {
|
|
4561
4272
|
description: string;
|
|
@@ -4565,7 +4276,13 @@ export declare const interfaces: {
|
|
|
4565
4276
|
methods: ({
|
|
4566
4277
|
description: string;
|
|
4567
4278
|
name: string;
|
|
4568
|
-
params:
|
|
4279
|
+
params: {
|
|
4280
|
+
default: any;
|
|
4281
|
+
description: string;
|
|
4282
|
+
isRequired: boolean;
|
|
4283
|
+
name: string;
|
|
4284
|
+
type: string;
|
|
4285
|
+
}[];
|
|
4569
4286
|
returnDescription: string;
|
|
4570
4287
|
returnType: string;
|
|
4571
4288
|
} | {
|
|
@@ -4573,12 +4290,36 @@ export declare const interfaces: {
|
|
|
4573
4290
|
name: string;
|
|
4574
4291
|
params: {
|
|
4575
4292
|
default: any;
|
|
4293
|
+
description: string;
|
|
4576
4294
|
isRequired: boolean;
|
|
4577
4295
|
name: string;
|
|
4578
4296
|
type: string;
|
|
4579
4297
|
}[];
|
|
4580
4298
|
returnType: string;
|
|
4581
4299
|
returnDescription?: undefined;
|
|
4300
|
+
})[];
|
|
4301
|
+
name: string;
|
|
4302
|
+
properties: any[];
|
|
4303
|
+
url: string;
|
|
4304
|
+
};
|
|
4305
|
+
ifsgnodedict: {
|
|
4306
|
+
description: string;
|
|
4307
|
+
implementers: {
|
|
4308
|
+
description: string;
|
|
4309
|
+
name: string;
|
|
4310
|
+
url: string;
|
|
4311
|
+
}[];
|
|
4312
|
+
methods: ({
|
|
4313
|
+
name: string;
|
|
4314
|
+
params: {
|
|
4315
|
+
default: any;
|
|
4316
|
+
isRequired: boolean;
|
|
4317
|
+
name: string;
|
|
4318
|
+
type: string;
|
|
4319
|
+
}[];
|
|
4320
|
+
returnDescription: string;
|
|
4321
|
+
returnType: string;
|
|
4322
|
+
description?: undefined;
|
|
4582
4323
|
} | {
|
|
4583
4324
|
description: string;
|
|
4584
4325
|
name: string;
|
|
@@ -4589,26 +4330,26 @@ export declare const interfaces: {
|
|
|
4589
4330
|
name: string;
|
|
4590
4331
|
type: string;
|
|
4591
4332
|
}[];
|
|
4333
|
+
returnDescription: string;
|
|
4592
4334
|
returnType: string;
|
|
4593
|
-
returnDescription?: undefined;
|
|
4594
4335
|
} | {
|
|
4336
|
+
description: string;
|
|
4595
4337
|
name: string;
|
|
4596
4338
|
params: {
|
|
4597
4339
|
default: any;
|
|
4598
|
-
description: string;
|
|
4599
4340
|
isRequired: boolean;
|
|
4600
4341
|
name: string;
|
|
4601
4342
|
type: string;
|
|
4602
4343
|
}[];
|
|
4344
|
+
returnDescription: string;
|
|
4603
4345
|
returnType: string;
|
|
4604
|
-
description?: undefined;
|
|
4605
|
-
returnDescription?: undefined;
|
|
4606
4346
|
})[];
|
|
4607
4347
|
name: string;
|
|
4608
4348
|
properties: any[];
|
|
4609
4349
|
url: string;
|
|
4610
4350
|
};
|
|
4611
|
-
|
|
4351
|
+
ifsgnodefield: {
|
|
4352
|
+
description: string;
|
|
4612
4353
|
implementers: {
|
|
4613
4354
|
description: string;
|
|
4614
4355
|
name: string;
|
|
@@ -4624,14 +4365,13 @@ export declare const interfaces: {
|
|
|
4624
4365
|
name: string;
|
|
4625
4366
|
type: string;
|
|
4626
4367
|
}[];
|
|
4368
|
+
returnDescription: string;
|
|
4627
4369
|
returnType: string;
|
|
4628
|
-
returnDescription?: undefined;
|
|
4629
4370
|
} | {
|
|
4630
4371
|
description: string;
|
|
4631
4372
|
name: string;
|
|
4632
4373
|
params: {
|
|
4633
4374
|
default: any;
|
|
4634
|
-
description: string;
|
|
4635
4375
|
isRequired: boolean;
|
|
4636
4376
|
name: string;
|
|
4637
4377
|
type: string;
|
|
@@ -4643,7 +4383,7 @@ export declare const interfaces: {
|
|
|
4643
4383
|
properties: any[];
|
|
4644
4384
|
url: string;
|
|
4645
4385
|
};
|
|
4646
|
-
|
|
4386
|
+
ifsgnodefocus: {
|
|
4647
4387
|
description: string;
|
|
4648
4388
|
implementers: {
|
|
4649
4389
|
description: string;
|
|
@@ -4667,7 +4407,8 @@ export declare const interfaces: {
|
|
|
4667
4407
|
properties: any[];
|
|
4668
4408
|
url: string;
|
|
4669
4409
|
};
|
|
4670
|
-
|
|
4410
|
+
ifsgnodehttpagentaccess: {
|
|
4411
|
+
description: string;
|
|
4671
4412
|
implementers: {
|
|
4672
4413
|
description: string;
|
|
4673
4414
|
name: string;
|
|
@@ -4680,13 +4421,6 @@ export declare const interfaces: {
|
|
|
4680
4421
|
returnDescription: string;
|
|
4681
4422
|
returnType: string;
|
|
4682
4423
|
} | {
|
|
4683
|
-
name: string;
|
|
4684
|
-
params: any[];
|
|
4685
|
-
returnType: string;
|
|
4686
|
-
description?: undefined;
|
|
4687
|
-
returnDescription?: undefined;
|
|
4688
|
-
} | {
|
|
4689
|
-
description: string;
|
|
4690
4424
|
name: string;
|
|
4691
4425
|
params: {
|
|
4692
4426
|
default: any;
|
|
@@ -4695,20 +4429,21 @@ export declare const interfaces: {
|
|
|
4695
4429
|
name: string;
|
|
4696
4430
|
type: string;
|
|
4697
4431
|
}[];
|
|
4432
|
+
returnDescription: string;
|
|
4698
4433
|
returnType: string;
|
|
4699
|
-
|
|
4434
|
+
description?: undefined;
|
|
4700
4435
|
})[];
|
|
4701
4436
|
name: string;
|
|
4702
4437
|
properties: any[];
|
|
4703
4438
|
url: string;
|
|
4704
4439
|
};
|
|
4705
|
-
|
|
4440
|
+
ifsgscreen: {
|
|
4706
4441
|
implementers: {
|
|
4707
4442
|
description: string;
|
|
4708
4443
|
name: string;
|
|
4709
4444
|
url: string;
|
|
4710
4445
|
}[];
|
|
4711
|
-
methods: {
|
|
4446
|
+
methods: ({
|
|
4712
4447
|
description: string;
|
|
4713
4448
|
name: string;
|
|
4714
4449
|
params: {
|
|
@@ -4720,18 +4455,37 @@ export declare const interfaces: {
|
|
|
4720
4455
|
}[];
|
|
4721
4456
|
returnDescription: string;
|
|
4722
4457
|
returnType: string;
|
|
4723
|
-
}
|
|
4458
|
+
} | {
|
|
4459
|
+
description: string;
|
|
4460
|
+
name: string;
|
|
4461
|
+
params: {
|
|
4462
|
+
default: any;
|
|
4463
|
+
description: string;
|
|
4464
|
+
isRequired: boolean;
|
|
4465
|
+
name: string;
|
|
4466
|
+
type: string;
|
|
4467
|
+
}[];
|
|
4468
|
+
returnType: string;
|
|
4469
|
+
returnDescription?: undefined;
|
|
4470
|
+
})[];
|
|
4724
4471
|
name: string;
|
|
4725
4472
|
properties: any[];
|
|
4726
4473
|
url: string;
|
|
4727
4474
|
};
|
|
4728
|
-
|
|
4475
|
+
ifsocket: {
|
|
4729
4476
|
implementers: {
|
|
4730
4477
|
description: string;
|
|
4731
4478
|
name: string;
|
|
4732
4479
|
url: string;
|
|
4733
4480
|
}[];
|
|
4734
4481
|
methods: ({
|
|
4482
|
+
name: string;
|
|
4483
|
+
params: any[];
|
|
4484
|
+
returnType: string;
|
|
4485
|
+
description?: undefined;
|
|
4486
|
+
returnDescription?: undefined;
|
|
4487
|
+
} | {
|
|
4488
|
+
description: string;
|
|
4735
4489
|
name: string;
|
|
4736
4490
|
params: {
|
|
4737
4491
|
default: any;
|
|
@@ -4742,9 +4496,7 @@ export declare const interfaces: {
|
|
|
4742
4496
|
}[];
|
|
4743
4497
|
returnDescription: string;
|
|
4744
4498
|
returnType: string;
|
|
4745
|
-
description?: undefined;
|
|
4746
4499
|
} | {
|
|
4747
|
-
description: string;
|
|
4748
4500
|
name: string;
|
|
4749
4501
|
params: {
|
|
4750
4502
|
default: any;
|
|
@@ -4755,12 +4507,13 @@ export declare const interfaces: {
|
|
|
4755
4507
|
}[];
|
|
4756
4508
|
returnDescription: string;
|
|
4757
4509
|
returnType: string;
|
|
4510
|
+
description?: undefined;
|
|
4758
4511
|
})[];
|
|
4759
4512
|
name: string;
|
|
4760
4513
|
properties: any[];
|
|
4761
4514
|
url: string;
|
|
4762
4515
|
};
|
|
4763
|
-
|
|
4516
|
+
ifsocketaddress: {
|
|
4764
4517
|
implementers: {
|
|
4765
4518
|
description: string;
|
|
4766
4519
|
name: string;
|
|
@@ -4768,13 +4521,7 @@ export declare const interfaces: {
|
|
|
4768
4521
|
}[];
|
|
4769
4522
|
methods: ({
|
|
4770
4523
|
name: string;
|
|
4771
|
-
params:
|
|
4772
|
-
default: any;
|
|
4773
|
-
description: string;
|
|
4774
|
-
isRequired: boolean;
|
|
4775
|
-
name: string;
|
|
4776
|
-
type: string;
|
|
4777
|
-
}[];
|
|
4524
|
+
params: any[];
|
|
4778
4525
|
returnDescription: string;
|
|
4779
4526
|
returnType: string;
|
|
4780
4527
|
description?: undefined;
|
|
@@ -4788,55 +4535,14 @@ export declare const interfaces: {
|
|
|
4788
4535
|
name: string;
|
|
4789
4536
|
type: string;
|
|
4790
4537
|
}[];
|
|
4791
|
-
|
|
4792
|
-
returnDescription?: undefined;
|
|
4793
|
-
} | {
|
|
4794
|
-
name: string;
|
|
4795
|
-
params: {
|
|
4796
|
-
default: any;
|
|
4797
|
-
description: string;
|
|
4798
|
-
isRequired: boolean;
|
|
4799
|
-
name: string;
|
|
4800
|
-
type: string;
|
|
4801
|
-
}[];
|
|
4802
|
-
returnType: string;
|
|
4803
|
-
returnDescription?: undefined;
|
|
4804
|
-
description?: undefined;
|
|
4805
|
-
} | {
|
|
4806
|
-
description: string;
|
|
4807
|
-
name: string;
|
|
4808
|
-
params: {
|
|
4809
|
-
default: any;
|
|
4810
|
-
description: string;
|
|
4811
|
-
isRequired: boolean;
|
|
4812
|
-
name: string;
|
|
4813
|
-
type: string;
|
|
4814
|
-
}[];
|
|
4815
|
-
returnDescription: string;
|
|
4538
|
+
returnDescription: string;
|
|
4816
4539
|
returnType: string;
|
|
4817
4540
|
})[];
|
|
4818
4541
|
name: string;
|
|
4819
4542
|
properties: any[];
|
|
4820
4543
|
url: string;
|
|
4821
4544
|
};
|
|
4822
|
-
|
|
4823
|
-
description: string;
|
|
4824
|
-
implementers: {
|
|
4825
|
-
description: string;
|
|
4826
|
-
name: string;
|
|
4827
|
-
url: string;
|
|
4828
|
-
}[];
|
|
4829
|
-
methods: {
|
|
4830
|
-
description: string;
|
|
4831
|
-
name: string;
|
|
4832
|
-
params: any[];
|
|
4833
|
-
returnType: string;
|
|
4834
|
-
}[];
|
|
4835
|
-
name: string;
|
|
4836
|
-
properties: any[];
|
|
4837
|
-
url: string;
|
|
4838
|
-
};
|
|
4839
|
-
ifsearchhistory: {
|
|
4545
|
+
ifsocketasync: {
|
|
4840
4546
|
description: string;
|
|
4841
4547
|
implementers: {
|
|
4842
4548
|
description: string;
|
|
@@ -4866,13 +4572,13 @@ export declare const interfaces: {
|
|
|
4866
4572
|
properties: any[];
|
|
4867
4573
|
url: string;
|
|
4868
4574
|
};
|
|
4869
|
-
|
|
4575
|
+
ifsocketcastoption: {
|
|
4870
4576
|
implementers: {
|
|
4871
4577
|
description: string;
|
|
4872
4578
|
name: string;
|
|
4873
4579
|
url: string;
|
|
4874
4580
|
}[];
|
|
4875
|
-
methods:
|
|
4581
|
+
methods: {
|
|
4876
4582
|
description: string;
|
|
4877
4583
|
name: string;
|
|
4878
4584
|
params: {
|
|
@@ -4882,26 +4588,26 @@ export declare const interfaces: {
|
|
|
4882
4588
|
name: string;
|
|
4883
4589
|
type: string;
|
|
4884
4590
|
}[];
|
|
4885
|
-
returnType: string;
|
|
4886
|
-
returnDescription?: undefined;
|
|
4887
|
-
} | {
|
|
4888
|
-
description: string;
|
|
4889
|
-
name: string;
|
|
4890
|
-
params: any[];
|
|
4891
4591
|
returnDescription: string;
|
|
4892
4592
|
returnType: string;
|
|
4893
|
-
}
|
|
4593
|
+
}[];
|
|
4894
4594
|
name: string;
|
|
4895
4595
|
properties: any[];
|
|
4896
4596
|
url: string;
|
|
4897
4597
|
};
|
|
4898
|
-
|
|
4598
|
+
ifsocketconnection: {
|
|
4899
4599
|
implementers: {
|
|
4900
4600
|
description: string;
|
|
4901
4601
|
name: string;
|
|
4902
4602
|
url: string;
|
|
4903
4603
|
}[];
|
|
4904
|
-
methods: {
|
|
4604
|
+
methods: ({
|
|
4605
|
+
name: string;
|
|
4606
|
+
params: any[];
|
|
4607
|
+
returnDescription: string;
|
|
4608
|
+
returnType: string;
|
|
4609
|
+
description?: undefined;
|
|
4610
|
+
} | {
|
|
4905
4611
|
description: string;
|
|
4906
4612
|
name: string;
|
|
4907
4613
|
params: {
|
|
@@ -4911,14 +4617,14 @@ export declare const interfaces: {
|
|
|
4911
4617
|
name: string;
|
|
4912
4618
|
type: string;
|
|
4913
4619
|
}[];
|
|
4620
|
+
returnDescription: string;
|
|
4914
4621
|
returnType: string;
|
|
4915
|
-
}[];
|
|
4622
|
+
})[];
|
|
4916
4623
|
name: string;
|
|
4917
4624
|
properties: any[];
|
|
4918
4625
|
url: string;
|
|
4919
4626
|
};
|
|
4920
|
-
|
|
4921
|
-
description: string;
|
|
4627
|
+
ifsocketconnectionoption: {
|
|
4922
4628
|
implementers: {
|
|
4923
4629
|
description: string;
|
|
4924
4630
|
name: string;
|
|
@@ -4941,65 +4647,30 @@ export declare const interfaces: {
|
|
|
4941
4647
|
properties: any[];
|
|
4942
4648
|
url: string;
|
|
4943
4649
|
};
|
|
4944
|
-
|
|
4945
|
-
description: string;
|
|
4650
|
+
ifsocketconnectionstatus: {
|
|
4946
4651
|
implementers: {
|
|
4947
4652
|
description: string;
|
|
4948
4653
|
name: string;
|
|
4949
4654
|
url: string;
|
|
4950
4655
|
}[];
|
|
4951
|
-
methods:
|
|
4952
|
-
description: string;
|
|
4953
|
-
name: string;
|
|
4954
|
-
params: {
|
|
4955
|
-
default: any;
|
|
4956
|
-
isRequired: boolean;
|
|
4957
|
-
name: string;
|
|
4958
|
-
}[];
|
|
4959
|
-
returnDescription: string;
|
|
4960
|
-
returnType?: undefined;
|
|
4961
|
-
} | {
|
|
4962
|
-
description: string;
|
|
4963
|
-
name: string;
|
|
4964
|
-
params: {
|
|
4965
|
-
default: any;
|
|
4966
|
-
description: string;
|
|
4967
|
-
isRequired: boolean;
|
|
4968
|
-
name: string;
|
|
4969
|
-
type: string;
|
|
4970
|
-
}[];
|
|
4971
|
-
returnDescription: string;
|
|
4972
|
-
returnType: string;
|
|
4973
|
-
} | {
|
|
4656
|
+
methods: {
|
|
4974
4657
|
description: string;
|
|
4975
4658
|
name: string;
|
|
4976
4659
|
params: any[];
|
|
4660
|
+
returnDescription: string;
|
|
4977
4661
|
returnType: string;
|
|
4978
|
-
|
|
4979
|
-
})[];
|
|
4662
|
+
}[];
|
|
4980
4663
|
name: string;
|
|
4981
4664
|
properties: any[];
|
|
4982
4665
|
url: string;
|
|
4983
4666
|
};
|
|
4984
|
-
|
|
4985
|
-
description: string;
|
|
4667
|
+
ifsocketoption: {
|
|
4986
4668
|
implementers: {
|
|
4987
4669
|
description: string;
|
|
4988
4670
|
name: string;
|
|
4989
4671
|
url: string;
|
|
4990
4672
|
}[];
|
|
4991
4673
|
methods: ({
|
|
4992
|
-
name: string;
|
|
4993
|
-
params: {
|
|
4994
|
-
default: any;
|
|
4995
|
-
isRequired: boolean;
|
|
4996
|
-
name: string;
|
|
4997
|
-
type: string;
|
|
4998
|
-
}[];
|
|
4999
|
-
returnDescription: string;
|
|
5000
|
-
returnType: string;
|
|
5001
|
-
description?: undefined;
|
|
5002
|
-
} | {
|
|
5003
4674
|
description: string;
|
|
5004
4675
|
name: string;
|
|
5005
4676
|
params: {
|
|
@@ -5016,19 +4687,19 @@ export declare const interfaces: {
|
|
|
5016
4687
|
name: string;
|
|
5017
4688
|
params: {
|
|
5018
4689
|
default: any;
|
|
4690
|
+
description: string;
|
|
5019
4691
|
isRequired: boolean;
|
|
5020
4692
|
name: string;
|
|
5021
4693
|
type: string;
|
|
5022
4694
|
}[];
|
|
5023
|
-
returnDescription: string;
|
|
5024
4695
|
returnType: string;
|
|
4696
|
+
returnDescription?: undefined;
|
|
5025
4697
|
})[];
|
|
5026
4698
|
name: string;
|
|
5027
4699
|
properties: any[];
|
|
5028
4700
|
url: string;
|
|
5029
4701
|
};
|
|
5030
|
-
|
|
5031
|
-
description: string;
|
|
4702
|
+
ifsocketstatus: {
|
|
5032
4703
|
implementers: {
|
|
5033
4704
|
description: string;
|
|
5034
4705
|
name: string;
|
|
@@ -5037,45 +4708,21 @@ export declare const interfaces: {
|
|
|
5037
4708
|
methods: ({
|
|
5038
4709
|
description: string;
|
|
5039
4710
|
name: string;
|
|
5040
|
-
params:
|
|
5041
|
-
default: any;
|
|
5042
|
-
description: string;
|
|
5043
|
-
isRequired: boolean;
|
|
5044
|
-
name: string;
|
|
5045
|
-
type: string;
|
|
5046
|
-
}[];
|
|
4711
|
+
params: any[];
|
|
5047
4712
|
returnDescription: string;
|
|
5048
4713
|
returnType: string;
|
|
5049
4714
|
} | {
|
|
5050
|
-
description: string;
|
|
5051
|
-
name: string;
|
|
5052
|
-
params: {
|
|
5053
|
-
default: any;
|
|
5054
|
-
description: string;
|
|
5055
|
-
isRequired: boolean;
|
|
5056
|
-
name: string;
|
|
5057
|
-
type: string;
|
|
5058
|
-
}[];
|
|
5059
|
-
returnDescription: string;
|
|
5060
|
-
returnType?: undefined;
|
|
5061
|
-
} | {
|
|
5062
|
-
description: string;
|
|
5063
4715
|
name: string;
|
|
5064
|
-
params:
|
|
5065
|
-
default: any;
|
|
5066
|
-
isRequired: boolean;
|
|
5067
|
-
name: string;
|
|
5068
|
-
type: string;
|
|
5069
|
-
}[];
|
|
5070
|
-
returnDescription: string;
|
|
4716
|
+
params: any[];
|
|
5071
4717
|
returnType: string;
|
|
4718
|
+
description?: undefined;
|
|
4719
|
+
returnDescription?: undefined;
|
|
5072
4720
|
})[];
|
|
5073
4721
|
name: string;
|
|
5074
4722
|
properties: any[];
|
|
5075
4723
|
url: string;
|
|
5076
4724
|
};
|
|
5077
|
-
|
|
5078
|
-
description: string;
|
|
4725
|
+
ifsourceidentity: {
|
|
5079
4726
|
implementers: {
|
|
5080
4727
|
description: string;
|
|
5081
4728
|
name: string;
|
|
@@ -5084,13 +4731,7 @@ export declare const interfaces: {
|
|
|
5084
4731
|
methods: {
|
|
5085
4732
|
description: string;
|
|
5086
4733
|
name: string;
|
|
5087
|
-
params:
|
|
5088
|
-
default: any;
|
|
5089
|
-
description: string;
|
|
5090
|
-
isRequired: boolean;
|
|
5091
|
-
name: string;
|
|
5092
|
-
type: string;
|
|
5093
|
-
}[];
|
|
4734
|
+
params: any[];
|
|
5094
4735
|
returnDescription: string;
|
|
5095
4736
|
returnType: string;
|
|
5096
4737
|
}[];
|
|
@@ -5098,8 +4739,7 @@ export declare const interfaces: {
|
|
|
5098
4739
|
properties: any[];
|
|
5099
4740
|
url: string;
|
|
5100
4741
|
};
|
|
5101
|
-
|
|
5102
|
-
description: string;
|
|
4742
|
+
ifsprite: {
|
|
5103
4743
|
implementers: {
|
|
5104
4744
|
description: string;
|
|
5105
4745
|
name: string;
|
|
@@ -5112,21 +4752,23 @@ export declare const interfaces: {
|
|
|
5112
4752
|
returnDescription: string;
|
|
5113
4753
|
returnType: string;
|
|
5114
4754
|
} | {
|
|
4755
|
+
description: string;
|
|
5115
4756
|
name: string;
|
|
5116
4757
|
params: {
|
|
5117
4758
|
default: any;
|
|
4759
|
+
description: string;
|
|
5118
4760
|
isRequired: boolean;
|
|
5119
4761
|
name: string;
|
|
4762
|
+
type: string;
|
|
5120
4763
|
}[];
|
|
5121
|
-
|
|
5122
|
-
|
|
5123
|
-
returnType?: undefined;
|
|
4764
|
+
returnType: string;
|
|
4765
|
+
returnDescription?: undefined;
|
|
5124
4766
|
})[];
|
|
5125
4767
|
name: string;
|
|
5126
4768
|
properties: any[];
|
|
5127
4769
|
url: string;
|
|
5128
4770
|
};
|
|
5129
|
-
|
|
4771
|
+
ifstring: {
|
|
5130
4772
|
implementers: {
|
|
5131
4773
|
description: string;
|
|
5132
4774
|
name: string;
|
|
@@ -5136,8 +4778,8 @@ export declare const interfaces: {
|
|
|
5136
4778
|
description: string;
|
|
5137
4779
|
name: string;
|
|
5138
4780
|
params: any[];
|
|
4781
|
+
returnDescription: string;
|
|
5139
4782
|
returnType: string;
|
|
5140
|
-
returnDescription?: undefined;
|
|
5141
4783
|
} | {
|
|
5142
4784
|
description: string;
|
|
5143
4785
|
name: string;
|
|
@@ -5148,22 +4790,19 @@ export declare const interfaces: {
|
|
|
5148
4790
|
name: string;
|
|
5149
4791
|
type: string;
|
|
5150
4792
|
}[];
|
|
5151
|
-
returnDescription: string;
|
|
5152
4793
|
returnType: string;
|
|
4794
|
+
returnDescription?: undefined;
|
|
5153
4795
|
})[];
|
|
5154
4796
|
name: string;
|
|
5155
4797
|
properties: any[];
|
|
5156
4798
|
url: string;
|
|
5157
4799
|
};
|
|
5158
|
-
|
|
5159
|
-
deprecatedDescription: string;
|
|
5160
|
-
description: string;
|
|
4800
|
+
ifstringops: {
|
|
5161
4801
|
implementers: {
|
|
5162
4802
|
description: string;
|
|
5163
4803
|
name: string;
|
|
5164
4804
|
url: string;
|
|
5165
4805
|
}[];
|
|
5166
|
-
isDeprecated: boolean;
|
|
5167
4806
|
methods: ({
|
|
5168
4807
|
description: string;
|
|
5169
4808
|
name: string;
|
|
@@ -5174,8 +4813,8 @@ export declare const interfaces: {
|
|
|
5174
4813
|
name: string;
|
|
5175
4814
|
type: string;
|
|
5176
4815
|
}[];
|
|
5177
|
-
returnDescription: string;
|
|
5178
4816
|
returnType: string;
|
|
4817
|
+
returnDescription?: undefined;
|
|
5179
4818
|
} | {
|
|
5180
4819
|
description: string;
|
|
5181
4820
|
name: string;
|
|
@@ -5186,9 +4825,21 @@ export declare const interfaces: {
|
|
|
5186
4825
|
name: string;
|
|
5187
4826
|
type: string;
|
|
5188
4827
|
}[];
|
|
4828
|
+
returnDescription: string;
|
|
5189
4829
|
returnType: string;
|
|
5190
|
-
|
|
5191
|
-
|
|
4830
|
+
})[];
|
|
4831
|
+
name: string;
|
|
4832
|
+
properties: any[];
|
|
4833
|
+
url: string;
|
|
4834
|
+
};
|
|
4835
|
+
ifsystemlog: {
|
|
4836
|
+
implementers: {
|
|
4837
|
+
description: string;
|
|
4838
|
+
name: string;
|
|
4839
|
+
url: string;
|
|
4840
|
+
}[];
|
|
4841
|
+
methods: {
|
|
4842
|
+
description: string;
|
|
5192
4843
|
name: string;
|
|
5193
4844
|
params: {
|
|
5194
4845
|
default: any;
|
|
@@ -5197,33 +4848,20 @@ export declare const interfaces: {
|
|
|
5197
4848
|
name: string;
|
|
5198
4849
|
type: string;
|
|
5199
4850
|
}[];
|
|
5200
|
-
returnDescription: string;
|
|
5201
|
-
returnType: string;
|
|
5202
|
-
description?: undefined;
|
|
5203
|
-
} | {
|
|
5204
|
-
name: string;
|
|
5205
|
-
params: any[];
|
|
5206
4851
|
returnType: string;
|
|
5207
|
-
|
|
5208
|
-
returnDescription?: undefined;
|
|
5209
|
-
})[];
|
|
4852
|
+
}[];
|
|
5210
4853
|
name: string;
|
|
5211
4854
|
properties: any[];
|
|
5212
4855
|
url: string;
|
|
5213
4856
|
};
|
|
5214
|
-
|
|
4857
|
+
iftexttospeech: {
|
|
4858
|
+
description: string;
|
|
5215
4859
|
implementers: {
|
|
5216
4860
|
description: string;
|
|
5217
4861
|
name: string;
|
|
5218
4862
|
url: string;
|
|
5219
4863
|
}[];
|
|
5220
4864
|
methods: ({
|
|
5221
|
-
name: string;
|
|
5222
|
-
params: any[];
|
|
5223
|
-
returnType: string;
|
|
5224
|
-
description?: undefined;
|
|
5225
|
-
returnDescription?: undefined;
|
|
5226
|
-
} | {
|
|
5227
4865
|
description: string;
|
|
5228
4866
|
name: string;
|
|
5229
4867
|
params: {
|
|
@@ -5236,6 +4874,7 @@ export declare const interfaces: {
|
|
|
5236
4874
|
returnDescription: string;
|
|
5237
4875
|
returnType: string;
|
|
5238
4876
|
} | {
|
|
4877
|
+
description: string;
|
|
5239
4878
|
name: string;
|
|
5240
4879
|
params: {
|
|
5241
4880
|
default: any;
|
|
@@ -5244,27 +4883,20 @@ export declare const interfaces: {
|
|
|
5244
4883
|
name: string;
|
|
5245
4884
|
type: string;
|
|
5246
4885
|
}[];
|
|
5247
|
-
returnDescription: string;
|
|
5248
4886
|
returnType: string;
|
|
5249
|
-
|
|
4887
|
+
returnDescription?: undefined;
|
|
5250
4888
|
})[];
|
|
5251
4889
|
name: string;
|
|
5252
4890
|
properties: any[];
|
|
5253
4891
|
url: string;
|
|
5254
4892
|
};
|
|
5255
|
-
|
|
4893
|
+
iftexturemanager: {
|
|
5256
4894
|
implementers: {
|
|
5257
4895
|
description: string;
|
|
5258
4896
|
name: string;
|
|
5259
4897
|
url: string;
|
|
5260
4898
|
}[];
|
|
5261
|
-
methods:
|
|
5262
|
-
name: string;
|
|
5263
|
-
params: any[];
|
|
5264
|
-
returnDescription: string;
|
|
5265
|
-
returnType: string;
|
|
5266
|
-
description?: undefined;
|
|
5267
|
-
} | {
|
|
4899
|
+
methods: {
|
|
5268
4900
|
description: string;
|
|
5269
4901
|
name: string;
|
|
5270
4902
|
params: {
|
|
@@ -5274,15 +4906,13 @@ export declare const interfaces: {
|
|
|
5274
4906
|
name: string;
|
|
5275
4907
|
type: string;
|
|
5276
4908
|
}[];
|
|
5277
|
-
returnDescription: string;
|
|
5278
4909
|
returnType: string;
|
|
5279
|
-
}
|
|
4910
|
+
}[];
|
|
5280
4911
|
name: string;
|
|
5281
4912
|
properties: any[];
|
|
5282
4913
|
url: string;
|
|
5283
4914
|
};
|
|
5284
|
-
|
|
5285
|
-
description: string;
|
|
4915
|
+
iftexturerequest: {
|
|
5286
4916
|
implementers: {
|
|
5287
4917
|
description: string;
|
|
5288
4918
|
name: string;
|
|
@@ -5311,550 +4941,53 @@ export declare const interfaces: {
|
|
|
5311
4941
|
properties: any[];
|
|
5312
4942
|
url: string;
|
|
5313
4943
|
};
|
|
5314
|
-
|
|
4944
|
+
iftimespan: {
|
|
5315
4945
|
implementers: {
|
|
5316
4946
|
description: string;
|
|
5317
4947
|
name: string;
|
|
5318
4948
|
url: string;
|
|
5319
4949
|
}[];
|
|
5320
|
-
methods: {
|
|
4950
|
+
methods: ({
|
|
5321
4951
|
description: string;
|
|
5322
4952
|
name: string;
|
|
5323
4953
|
params: {
|
|
5324
4954
|
default: any;
|
|
5325
|
-
description: string;
|
|
5326
4955
|
isRequired: boolean;
|
|
5327
4956
|
name: string;
|
|
5328
4957
|
type: string;
|
|
5329
4958
|
}[];
|
|
5330
4959
|
returnDescription: string;
|
|
5331
4960
|
returnType: string;
|
|
5332
|
-
}
|
|
4961
|
+
} | {
|
|
4962
|
+
description: string;
|
|
4963
|
+
name: string;
|
|
4964
|
+
params: any[];
|
|
4965
|
+
returnType: string;
|
|
4966
|
+
returnDescription?: undefined;
|
|
4967
|
+
})[];
|
|
5333
4968
|
name: string;
|
|
5334
4969
|
properties: any[];
|
|
5335
4970
|
url: string;
|
|
5336
4971
|
};
|
|
5337
|
-
|
|
4972
|
+
iftostr: {
|
|
5338
4973
|
implementers: {
|
|
5339
4974
|
description: string;
|
|
5340
4975
|
name: string;
|
|
5341
4976
|
url: string;
|
|
5342
4977
|
}[];
|
|
5343
|
-
methods:
|
|
4978
|
+
methods: {
|
|
4979
|
+
description: string;
|
|
5344
4980
|
name: string;
|
|
5345
4981
|
params: any[];
|
|
5346
4982
|
returnDescription: string;
|
|
5347
4983
|
returnType: string;
|
|
5348
|
-
|
|
5349
|
-
|
|
5350
|
-
|
|
5351
|
-
|
|
5352
|
-
|
|
5353
|
-
|
|
5354
|
-
|
|
5355
|
-
isRequired: boolean;
|
|
5356
|
-
name: string;
|
|
5357
|
-
type: string;
|
|
5358
|
-
}[];
|
|
5359
|
-
returnDescription: string;
|
|
5360
|
-
returnType: string;
|
|
5361
|
-
})[];
|
|
5362
|
-
name: string;
|
|
5363
|
-
properties: any[];
|
|
5364
|
-
url: string;
|
|
5365
|
-
};
|
|
5366
|
-
ifsocketconnectionoption: {
|
|
5367
|
-
implementers: {
|
|
5368
|
-
description: string;
|
|
5369
|
-
name: string;
|
|
5370
|
-
url: string;
|
|
5371
|
-
}[];
|
|
5372
|
-
methods: {
|
|
5373
|
-
description: string;
|
|
5374
|
-
name: string;
|
|
5375
|
-
params: {
|
|
5376
|
-
default: any;
|
|
5377
|
-
description: string;
|
|
5378
|
-
isRequired: boolean;
|
|
5379
|
-
name: string;
|
|
5380
|
-
type: string;
|
|
5381
|
-
}[];
|
|
5382
|
-
returnDescription: string;
|
|
5383
|
-
returnType: string;
|
|
5384
|
-
}[];
|
|
5385
|
-
name: string;
|
|
5386
|
-
properties: any[];
|
|
5387
|
-
url: string;
|
|
5388
|
-
};
|
|
5389
|
-
ifsocketconnectionstatus: {
|
|
5390
|
-
implementers: {
|
|
5391
|
-
description: string;
|
|
5392
|
-
name: string;
|
|
5393
|
-
url: string;
|
|
5394
|
-
}[];
|
|
5395
|
-
methods: {
|
|
5396
|
-
description: string;
|
|
5397
|
-
name: string;
|
|
5398
|
-
params: any[];
|
|
5399
|
-
returnDescription: string;
|
|
5400
|
-
returnType: string;
|
|
5401
|
-
}[];
|
|
5402
|
-
name: string;
|
|
5403
|
-
properties: any[];
|
|
5404
|
-
url: string;
|
|
5405
|
-
};
|
|
5406
|
-
ifsocketoption: {
|
|
5407
|
-
implementers: {
|
|
5408
|
-
description: string;
|
|
5409
|
-
name: string;
|
|
5410
|
-
url: string;
|
|
5411
|
-
}[];
|
|
5412
|
-
methods: ({
|
|
5413
|
-
description: string;
|
|
5414
|
-
name: string;
|
|
5415
|
-
params: {
|
|
5416
|
-
default: any;
|
|
5417
|
-
description: string;
|
|
5418
|
-
isRequired: boolean;
|
|
5419
|
-
name: string;
|
|
5420
|
-
type: string;
|
|
5421
|
-
}[];
|
|
5422
|
-
returnDescription: string;
|
|
5423
|
-
returnType: string;
|
|
5424
|
-
} | {
|
|
5425
|
-
description: string;
|
|
5426
|
-
name: string;
|
|
5427
|
-
params: {
|
|
5428
|
-
default: any;
|
|
5429
|
-
description: string;
|
|
5430
|
-
isRequired: boolean;
|
|
5431
|
-
name: string;
|
|
5432
|
-
type: string;
|
|
5433
|
-
}[];
|
|
5434
|
-
returnType: string;
|
|
5435
|
-
returnDescription?: undefined;
|
|
5436
|
-
})[];
|
|
5437
|
-
name: string;
|
|
5438
|
-
properties: any[];
|
|
5439
|
-
url: string;
|
|
5440
|
-
};
|
|
5441
|
-
ifsocketstatus: {
|
|
5442
|
-
implementers: {
|
|
5443
|
-
description: string;
|
|
5444
|
-
name: string;
|
|
5445
|
-
url: string;
|
|
5446
|
-
}[];
|
|
5447
|
-
methods: ({
|
|
5448
|
-
description: string;
|
|
5449
|
-
name: string;
|
|
5450
|
-
params: any[];
|
|
5451
|
-
returnDescription: string;
|
|
5452
|
-
returnType: string;
|
|
5453
|
-
} | {
|
|
5454
|
-
name: string;
|
|
5455
|
-
params: any[];
|
|
5456
|
-
returnType: string;
|
|
5457
|
-
description?: undefined;
|
|
5458
|
-
returnDescription?: undefined;
|
|
5459
|
-
})[];
|
|
5460
|
-
name: string;
|
|
5461
|
-
properties: any[];
|
|
5462
|
-
url: string;
|
|
5463
|
-
};
|
|
5464
|
-
ifsourceidentity: {
|
|
5465
|
-
implementers: {
|
|
5466
|
-
description: string;
|
|
5467
|
-
name: string;
|
|
5468
|
-
url: string;
|
|
5469
|
-
}[];
|
|
5470
|
-
methods: {
|
|
5471
|
-
description: string;
|
|
5472
|
-
name: string;
|
|
5473
|
-
params: any[];
|
|
5474
|
-
returnDescription: string;
|
|
5475
|
-
returnType: string;
|
|
5476
|
-
}[];
|
|
5477
|
-
name: string;
|
|
5478
|
-
properties: any[];
|
|
5479
|
-
url: string;
|
|
5480
|
-
};
|
|
5481
|
-
ifspringboardscreen: {
|
|
5482
|
-
deprecatedDescription: string;
|
|
5483
|
-
description: string;
|
|
5484
|
-
implementers: {
|
|
5485
|
-
description: string;
|
|
5486
|
-
name: string;
|
|
5487
|
-
url: string;
|
|
5488
|
-
}[];
|
|
5489
|
-
isDeprecated: boolean;
|
|
5490
|
-
methods: ({
|
|
5491
|
-
description: string;
|
|
5492
|
-
name: string;
|
|
5493
|
-
params: {
|
|
5494
|
-
default: any;
|
|
5495
|
-
description: string;
|
|
5496
|
-
isRequired: boolean;
|
|
5497
|
-
name: string;
|
|
5498
|
-
type: string;
|
|
5499
|
-
}[];
|
|
5500
|
-
returnDescription: string;
|
|
5501
|
-
returnType: string;
|
|
5502
|
-
} | {
|
|
5503
|
-
name: string;
|
|
5504
|
-
params: {
|
|
5505
|
-
default: any;
|
|
5506
|
-
description: string;
|
|
5507
|
-
isRequired: boolean;
|
|
5508
|
-
name: string;
|
|
5509
|
-
type: string;
|
|
5510
|
-
}[];
|
|
5511
|
-
returnType: string;
|
|
5512
|
-
description?: undefined;
|
|
5513
|
-
returnDescription?: undefined;
|
|
5514
|
-
} | {
|
|
5515
|
-
description: string;
|
|
5516
|
-
name: string;
|
|
5517
|
-
params: {
|
|
5518
|
-
default: any;
|
|
5519
|
-
description: string;
|
|
5520
|
-
isRequired: boolean;
|
|
5521
|
-
name: string;
|
|
5522
|
-
type: string;
|
|
5523
|
-
}[];
|
|
5524
|
-
returnType: string;
|
|
5525
|
-
returnDescription?: undefined;
|
|
5526
|
-
} | {
|
|
5527
|
-
description: string;
|
|
5528
|
-
name: string;
|
|
5529
|
-
params: {
|
|
5530
|
-
default: any;
|
|
5531
|
-
isRequired: boolean;
|
|
5532
|
-
name: string;
|
|
5533
|
-
type: string;
|
|
5534
|
-
}[];
|
|
5535
|
-
returnType: string;
|
|
5536
|
-
returnDescription?: undefined;
|
|
5537
|
-
})[];
|
|
5538
|
-
name: string;
|
|
5539
|
-
properties: any[];
|
|
5540
|
-
url: string;
|
|
5541
|
-
};
|
|
5542
|
-
ifsprite: {
|
|
5543
|
-
implementers: {
|
|
5544
|
-
description: string;
|
|
5545
|
-
name: string;
|
|
5546
|
-
url: string;
|
|
5547
|
-
}[];
|
|
5548
|
-
methods: ({
|
|
5549
|
-
description: string;
|
|
5550
|
-
name: string;
|
|
5551
|
-
params: any[];
|
|
5552
|
-
returnDescription: string;
|
|
5553
|
-
returnType: string;
|
|
5554
|
-
} | {
|
|
5555
|
-
description: string;
|
|
5556
|
-
name: string;
|
|
5557
|
-
params: {
|
|
5558
|
-
default: any;
|
|
5559
|
-
description: string;
|
|
5560
|
-
isRequired: boolean;
|
|
5561
|
-
name: string;
|
|
5562
|
-
type: string;
|
|
5563
|
-
}[];
|
|
5564
|
-
returnType: string;
|
|
5565
|
-
returnDescription?: undefined;
|
|
5566
|
-
})[];
|
|
5567
|
-
name: string;
|
|
5568
|
-
properties: any[];
|
|
5569
|
-
url: string;
|
|
5570
|
-
};
|
|
5571
|
-
ifstring: {
|
|
5572
|
-
implementers: {
|
|
5573
|
-
description: string;
|
|
5574
|
-
name: string;
|
|
5575
|
-
url: string;
|
|
5576
|
-
}[];
|
|
5577
|
-
methods: ({
|
|
5578
|
-
description: string;
|
|
5579
|
-
name: string;
|
|
5580
|
-
params: any[];
|
|
5581
|
-
returnDescription: string;
|
|
5582
|
-
returnType: string;
|
|
5583
|
-
} | {
|
|
5584
|
-
description: string;
|
|
5585
|
-
name: string;
|
|
5586
|
-
params: {
|
|
5587
|
-
default: any;
|
|
5588
|
-
description: string;
|
|
5589
|
-
isRequired: boolean;
|
|
5590
|
-
name: string;
|
|
5591
|
-
type: string;
|
|
5592
|
-
}[];
|
|
5593
|
-
returnType: string;
|
|
5594
|
-
returnDescription?: undefined;
|
|
5595
|
-
})[];
|
|
5596
|
-
name: string;
|
|
5597
|
-
properties: any[];
|
|
5598
|
-
url: string;
|
|
5599
|
-
};
|
|
5600
|
-
ifstringops: {
|
|
5601
|
-
implementers: {
|
|
5602
|
-
description: string;
|
|
5603
|
-
name: string;
|
|
5604
|
-
url: string;
|
|
5605
|
-
}[];
|
|
5606
|
-
methods: ({
|
|
5607
|
-
description: string;
|
|
5608
|
-
name: string;
|
|
5609
|
-
params: {
|
|
5610
|
-
default: any;
|
|
5611
|
-
description: string;
|
|
5612
|
-
isRequired: boolean;
|
|
5613
|
-
name: string;
|
|
5614
|
-
type: string;
|
|
5615
|
-
}[];
|
|
5616
|
-
returnType: string;
|
|
5617
|
-
returnDescription?: undefined;
|
|
5618
|
-
} | {
|
|
5619
|
-
name: string;
|
|
5620
|
-
params: {
|
|
5621
|
-
default: any;
|
|
5622
|
-
isRequired: boolean;
|
|
5623
|
-
name: string;
|
|
5624
|
-
type: string;
|
|
5625
|
-
}[];
|
|
5626
|
-
returnDescription: string;
|
|
5627
|
-
returnType: string;
|
|
5628
|
-
description?: undefined;
|
|
5629
|
-
} | {
|
|
5630
|
-
description: string;
|
|
5631
|
-
name: string;
|
|
5632
|
-
params: {
|
|
5633
|
-
default: any;
|
|
5634
|
-
description: string;
|
|
5635
|
-
isRequired: boolean;
|
|
5636
|
-
name: string;
|
|
5637
|
-
type: string;
|
|
5638
|
-
}[];
|
|
5639
|
-
returnDescription: string;
|
|
5640
|
-
returnType: string;
|
|
5641
|
-
} | {
|
|
5642
|
-
description: string;
|
|
5643
|
-
name: string;
|
|
5644
|
-
params: {
|
|
5645
|
-
default: any;
|
|
5646
|
-
isRequired: boolean;
|
|
5647
|
-
name: string;
|
|
5648
|
-
}[];
|
|
5649
|
-
returnDescription: string;
|
|
5650
|
-
returnType?: undefined;
|
|
5651
|
-
} | {
|
|
5652
|
-
description: string;
|
|
5653
|
-
name: string;
|
|
5654
|
-
params: {
|
|
5655
|
-
default: any;
|
|
5656
|
-
isRequired: boolean;
|
|
5657
|
-
name: string;
|
|
5658
|
-
}[];
|
|
5659
|
-
returnType?: undefined;
|
|
5660
|
-
returnDescription?: undefined;
|
|
5661
|
-
})[];
|
|
5662
|
-
name: string;
|
|
5663
|
-
properties: any[];
|
|
5664
|
-
url: string;
|
|
5665
|
-
};
|
|
5666
|
-
ifsystemlog: {
|
|
5667
|
-
implementers: {
|
|
5668
|
-
description: string;
|
|
5669
|
-
name: string;
|
|
5670
|
-
url: string;
|
|
5671
|
-
}[];
|
|
5672
|
-
methods: {
|
|
5673
|
-
description: string;
|
|
5674
|
-
name: string;
|
|
5675
|
-
params: {
|
|
5676
|
-
default: any;
|
|
5677
|
-
description: string;
|
|
5678
|
-
isRequired: boolean;
|
|
5679
|
-
name: string;
|
|
5680
|
-
type: string;
|
|
5681
|
-
}[];
|
|
5682
|
-
returnType: string;
|
|
5683
|
-
}[];
|
|
5684
|
-
name: string;
|
|
5685
|
-
properties: any[];
|
|
5686
|
-
url: string;
|
|
5687
|
-
};
|
|
5688
|
-
iftextscreen: {
|
|
5689
|
-
description: string;
|
|
5690
|
-
implementers: {
|
|
5691
|
-
description: string;
|
|
5692
|
-
name: string;
|
|
5693
|
-
url: string;
|
|
5694
|
-
}[];
|
|
5695
|
-
methods: ({
|
|
5696
|
-
description: string;
|
|
5697
|
-
name: string;
|
|
5698
|
-
params: {
|
|
5699
|
-
default: any;
|
|
5700
|
-
description: string;
|
|
5701
|
-
isRequired: boolean;
|
|
5702
|
-
name: string;
|
|
5703
|
-
type: string;
|
|
5704
|
-
}[];
|
|
5705
|
-
returnDescription: string;
|
|
5706
|
-
returnType: string;
|
|
5707
|
-
} | {
|
|
5708
|
-
description: string;
|
|
5709
|
-
name: string;
|
|
5710
|
-
params: {
|
|
5711
|
-
default: any;
|
|
5712
|
-
description: string;
|
|
5713
|
-
isRequired: boolean;
|
|
5714
|
-
name: string;
|
|
5715
|
-
type: string;
|
|
5716
|
-
}[];
|
|
5717
|
-
returnType: string;
|
|
5718
|
-
returnDescription?: undefined;
|
|
5719
|
-
})[];
|
|
5720
|
-
name: string;
|
|
5721
|
-
properties: any[];
|
|
5722
|
-
url: string;
|
|
5723
|
-
};
|
|
5724
|
-
iftexttospeech: {
|
|
5725
|
-
description: string;
|
|
5726
|
-
implementers: {
|
|
5727
|
-
description: string;
|
|
5728
|
-
name: string;
|
|
5729
|
-
url: string;
|
|
5730
|
-
}[];
|
|
5731
|
-
methods: ({
|
|
5732
|
-
description: string;
|
|
5733
|
-
name: string;
|
|
5734
|
-
params: {
|
|
5735
|
-
default: any;
|
|
5736
|
-
description: string;
|
|
5737
|
-
isRequired: boolean;
|
|
5738
|
-
name: string;
|
|
5739
|
-
type: string;
|
|
5740
|
-
}[];
|
|
5741
|
-
returnDescription: string;
|
|
5742
|
-
returnType: string;
|
|
5743
|
-
} | {
|
|
5744
|
-
description: string;
|
|
5745
|
-
name: string;
|
|
5746
|
-
params: {
|
|
5747
|
-
default: any;
|
|
5748
|
-
description: string;
|
|
5749
|
-
isRequired: boolean;
|
|
5750
|
-
name: string;
|
|
5751
|
-
type: string;
|
|
5752
|
-
}[];
|
|
5753
|
-
returnType: string;
|
|
5754
|
-
returnDescription?: undefined;
|
|
5755
|
-
})[];
|
|
5756
|
-
name: string;
|
|
5757
|
-
properties: any[];
|
|
5758
|
-
url: string;
|
|
5759
|
-
};
|
|
5760
|
-
iftexturemanager: {
|
|
5761
|
-
implementers: {
|
|
5762
|
-
description: string;
|
|
5763
|
-
name: string;
|
|
5764
|
-
url: string;
|
|
5765
|
-
}[];
|
|
5766
|
-
methods: {
|
|
5767
|
-
description: string;
|
|
5768
|
-
name: string;
|
|
5769
|
-
params: {
|
|
5770
|
-
default: any;
|
|
5771
|
-
description: string;
|
|
5772
|
-
isRequired: boolean;
|
|
5773
|
-
name: string;
|
|
5774
|
-
type: string;
|
|
5775
|
-
}[];
|
|
5776
|
-
returnType: string;
|
|
5777
|
-
}[];
|
|
5778
|
-
name: string;
|
|
5779
|
-
properties: any[];
|
|
5780
|
-
url: string;
|
|
5781
|
-
};
|
|
5782
|
-
iftexturerequest: {
|
|
5783
|
-
implementers: {
|
|
5784
|
-
description: string;
|
|
5785
|
-
name: string;
|
|
5786
|
-
url: string;
|
|
5787
|
-
}[];
|
|
5788
|
-
methods: ({
|
|
5789
|
-
description: string;
|
|
5790
|
-
name: string;
|
|
5791
|
-
params: any[];
|
|
5792
|
-
returnDescription: string;
|
|
5793
|
-
returnType: string;
|
|
5794
|
-
} | {
|
|
5795
|
-
description: string;
|
|
5796
|
-
name: string;
|
|
5797
|
-
params: {
|
|
5798
|
-
default: any;
|
|
5799
|
-
description: string;
|
|
5800
|
-
isRequired: boolean;
|
|
5801
|
-
name: string;
|
|
5802
|
-
type: string;
|
|
5803
|
-
}[];
|
|
5804
|
-
returnType: string;
|
|
5805
|
-
returnDescription?: undefined;
|
|
5806
|
-
})[];
|
|
5807
|
-
name: string;
|
|
5808
|
-
properties: any[];
|
|
5809
|
-
url: string;
|
|
5810
|
-
};
|
|
5811
|
-
iftimespan: {
|
|
5812
|
-
implementers: {
|
|
5813
|
-
description: string;
|
|
5814
|
-
name: string;
|
|
5815
|
-
url: string;
|
|
5816
|
-
}[];
|
|
5817
|
-
methods: ({
|
|
5818
|
-
description: string;
|
|
5819
|
-
name: string;
|
|
5820
|
-
params: {
|
|
5821
|
-
default: any;
|
|
5822
|
-
isRequired: boolean;
|
|
5823
|
-
name: string;
|
|
5824
|
-
type: string;
|
|
5825
|
-
}[];
|
|
5826
|
-
returnDescription: string;
|
|
5827
|
-
returnType: string;
|
|
5828
|
-
} | {
|
|
5829
|
-
description: string;
|
|
5830
|
-
name: string;
|
|
5831
|
-
params: any[];
|
|
5832
|
-
returnType: string;
|
|
5833
|
-
returnDescription?: undefined;
|
|
5834
|
-
})[];
|
|
5835
|
-
name: string;
|
|
5836
|
-
properties: any[];
|
|
5837
|
-
url: string;
|
|
5838
|
-
};
|
|
5839
|
-
iftostr: {
|
|
5840
|
-
implementers: {
|
|
5841
|
-
description: string;
|
|
5842
|
-
name: string;
|
|
5843
|
-
url: string;
|
|
5844
|
-
}[];
|
|
5845
|
-
methods: {
|
|
5846
|
-
description: string;
|
|
5847
|
-
name: string;
|
|
5848
|
-
params: any[];
|
|
5849
|
-
returnDescription: string;
|
|
5850
|
-
returnType: string;
|
|
5851
|
-
}[];
|
|
5852
|
-
name: string;
|
|
5853
|
-
properties: any[];
|
|
5854
|
-
url: string;
|
|
5855
|
-
};
|
|
5856
|
-
ifurltransfer: {
|
|
5857
|
-
implementers: {
|
|
4984
|
+
}[];
|
|
4985
|
+
name: string;
|
|
4986
|
+
properties: any[];
|
|
4987
|
+
url: string;
|
|
4988
|
+
};
|
|
4989
|
+
ifurltransfer: {
|
|
4990
|
+
implementers: {
|
|
5858
4991
|
description: string;
|
|
5859
4992
|
name: string;
|
|
5860
4993
|
url: string;
|
|
@@ -5908,32 +5041,6 @@ export declare const interfaces: {
|
|
|
5908
5041
|
returnDescription?: undefined;
|
|
5909
5042
|
deprecatedDescription?: undefined;
|
|
5910
5043
|
isDeprecated?: undefined;
|
|
5911
|
-
} | {
|
|
5912
|
-
description: string;
|
|
5913
|
-
name: string;
|
|
5914
|
-
params: {
|
|
5915
|
-
default: any;
|
|
5916
|
-
isRequired: boolean;
|
|
5917
|
-
name: string;
|
|
5918
|
-
}[];
|
|
5919
|
-
returnDescription: string;
|
|
5920
|
-
returnType?: undefined;
|
|
5921
|
-
deprecatedDescription?: undefined;
|
|
5922
|
-
isDeprecated?: undefined;
|
|
5923
|
-
} | {
|
|
5924
|
-
description: string;
|
|
5925
|
-
name: string;
|
|
5926
|
-
params: {
|
|
5927
|
-
default: any;
|
|
5928
|
-
description: string;
|
|
5929
|
-
isRequired: boolean;
|
|
5930
|
-
name: string;
|
|
5931
|
-
type: string;
|
|
5932
|
-
}[];
|
|
5933
|
-
returnType?: undefined;
|
|
5934
|
-
returnDescription?: undefined;
|
|
5935
|
-
deprecatedDescription?: undefined;
|
|
5936
|
-
isDeprecated?: undefined;
|
|
5937
5044
|
} | {
|
|
5938
5045
|
deprecatedDescription: string;
|
|
5939
5046
|
description: string;
|
|
@@ -5956,106 +5063,11 @@ export declare const interfaces: {
|
|
|
5956
5063
|
implementers: {
|
|
5957
5064
|
description: string;
|
|
5958
5065
|
name: string;
|
|
5959
|
-
url: string;
|
|
5960
|
-
}[];
|
|
5961
|
-
methods: ({
|
|
5962
|
-
description: string;
|
|
5963
|
-
name: string;
|
|
5964
|
-
params: {
|
|
5965
|
-
default: any;
|
|
5966
|
-
description: string;
|
|
5967
|
-
isRequired: boolean;
|
|
5968
|
-
name: string;
|
|
5969
|
-
type: string;
|
|
5970
|
-
}[];
|
|
5971
|
-
returnType: string;
|
|
5972
|
-
returnDescription?: undefined;
|
|
5973
|
-
deprecatedDescription?: undefined;
|
|
5974
|
-
isDeprecated?: undefined;
|
|
5975
|
-
} | {
|
|
5976
|
-
description: string;
|
|
5977
|
-
name: string;
|
|
5978
|
-
params: any[];
|
|
5979
|
-
returnDescription: string;
|
|
5980
|
-
returnType: string;
|
|
5981
|
-
deprecatedDescription?: undefined;
|
|
5982
|
-
isDeprecated?: undefined;
|
|
5983
|
-
} | {
|
|
5984
|
-
deprecatedDescription: string;
|
|
5985
|
-
isDeprecated: boolean;
|
|
5986
|
-
name: string;
|
|
5987
|
-
params: {
|
|
5988
|
-
default: any;
|
|
5989
|
-
isRequired: boolean;
|
|
5990
|
-
name: string;
|
|
5991
|
-
type: string;
|
|
5992
|
-
}[];
|
|
5993
|
-
returnType: string;
|
|
5994
|
-
description?: undefined;
|
|
5995
|
-
returnDescription?: undefined;
|
|
5996
|
-
} | {
|
|
5997
|
-
description: string;
|
|
5998
|
-
name: string;
|
|
5999
|
-
params: {
|
|
6000
|
-
default: any;
|
|
6001
|
-
isRequired: boolean;
|
|
6002
|
-
name: string;
|
|
6003
|
-
}[];
|
|
6004
|
-
returnType?: undefined;
|
|
6005
|
-
returnDescription?: undefined;
|
|
6006
|
-
deprecatedDescription?: undefined;
|
|
6007
|
-
isDeprecated?: undefined;
|
|
6008
|
-
})[];
|
|
6009
|
-
name: string;
|
|
6010
|
-
properties: any[];
|
|
6011
|
-
url: string;
|
|
6012
|
-
};
|
|
6013
|
-
ifvideoscreen: {
|
|
6014
|
-
deprecatedDescription: string;
|
|
6015
|
-
description: string;
|
|
6016
|
-
implementers: {
|
|
6017
|
-
description: string;
|
|
6018
|
-
name: string;
|
|
6019
|
-
url: string;
|
|
6020
|
-
}[];
|
|
6021
|
-
isDeprecated: boolean;
|
|
6022
|
-
methods: ({
|
|
6023
|
-
name: string;
|
|
6024
|
-
params: any[];
|
|
6025
|
-
returnType: string;
|
|
6026
|
-
description?: undefined;
|
|
6027
|
-
returnDescription?: undefined;
|
|
6028
|
-
deprecatedDescription?: undefined;
|
|
6029
|
-
isDeprecated?: undefined;
|
|
6030
|
-
} | {
|
|
6031
|
-
description: string;
|
|
6032
|
-
name: string;
|
|
6033
|
-
params: {
|
|
6034
|
-
default: any;
|
|
6035
|
-
description: string;
|
|
6036
|
-
isRequired: boolean;
|
|
6037
|
-
name: string;
|
|
6038
|
-
type: string;
|
|
6039
|
-
}[];
|
|
6040
|
-
returnType: string;
|
|
6041
|
-
returnDescription?: undefined;
|
|
6042
|
-
deprecatedDescription?: undefined;
|
|
6043
|
-
isDeprecated?: undefined;
|
|
6044
|
-
} | {
|
|
6045
|
-
description: string;
|
|
6046
|
-
name: string;
|
|
6047
|
-
params: {
|
|
6048
|
-
default: any;
|
|
6049
|
-
isRequired: boolean;
|
|
6050
|
-
name: string;
|
|
6051
|
-
}[];
|
|
6052
|
-
returnType?: undefined;
|
|
6053
|
-
returnDescription?: undefined;
|
|
6054
|
-
deprecatedDescription?: undefined;
|
|
6055
|
-
isDeprecated?: undefined;
|
|
6056
|
-
} | {
|
|
6057
|
-
description: string;
|
|
6058
|
-
name: string;
|
|
5066
|
+
url: string;
|
|
5067
|
+
}[];
|
|
5068
|
+
methods: ({
|
|
5069
|
+
description: string;
|
|
5070
|
+
name: string;
|
|
6059
5071
|
params: {
|
|
6060
5072
|
default: any;
|
|
6061
5073
|
description: string;
|
|
@@ -6063,22 +5075,16 @@ export declare const interfaces: {
|
|
|
6063
5075
|
name: string;
|
|
6064
5076
|
type: string;
|
|
6065
5077
|
}[];
|
|
6066
|
-
returnDescription: string;
|
|
6067
5078
|
returnType: string;
|
|
5079
|
+
returnDescription?: undefined;
|
|
6068
5080
|
deprecatedDescription?: undefined;
|
|
6069
5081
|
isDeprecated?: undefined;
|
|
6070
5082
|
} | {
|
|
6071
5083
|
description: string;
|
|
6072
5084
|
name: string;
|
|
6073
|
-
params:
|
|
6074
|
-
|
|
6075
|
-
|
|
6076
|
-
isRequired: boolean;
|
|
6077
|
-
name: string;
|
|
6078
|
-
type: string;
|
|
6079
|
-
}[];
|
|
6080
|
-
returnType?: undefined;
|
|
6081
|
-
returnDescription?: undefined;
|
|
5085
|
+
params: any[];
|
|
5086
|
+
returnDescription: string;
|
|
5087
|
+
returnType: string;
|
|
6082
5088
|
deprecatedDescription?: undefined;
|
|
6083
5089
|
isDeprecated?: undefined;
|
|
6084
5090
|
} | {
|
|
@@ -6129,16 +5135,6 @@ export declare const interfaces: {
|
|
|
6129
5135
|
}[];
|
|
6130
5136
|
returnDescription: string;
|
|
6131
5137
|
returnType: string;
|
|
6132
|
-
} | {
|
|
6133
|
-
description: string;
|
|
6134
|
-
name: string;
|
|
6135
|
-
params: {
|
|
6136
|
-
default: any;
|
|
6137
|
-
isRequired: boolean;
|
|
6138
|
-
name: string;
|
|
6139
|
-
}[];
|
|
6140
|
-
returnDescription: string;
|
|
6141
|
-
returnType?: undefined;
|
|
6142
5138
|
} | {
|
|
6143
5139
|
name: string;
|
|
6144
5140
|
params: {
|
|
@@ -6181,29 +5177,23 @@ export declare const interfaces: {
|
|
|
6181
5177
|
};
|
|
6182
5178
|
};
|
|
6183
5179
|
export declare const events: {
|
|
6184
|
-
|
|
5180
|
+
roappmemorymonitorevent: {
|
|
6185
5181
|
description: string;
|
|
6186
5182
|
implementers: {
|
|
6187
5183
|
name: string;
|
|
6188
5184
|
url: string;
|
|
6189
5185
|
}[];
|
|
6190
|
-
methods:
|
|
6191
|
-
name: string;
|
|
6192
|
-
params: any[];
|
|
6193
|
-
returnType: string;
|
|
6194
|
-
}[];
|
|
5186
|
+
methods: any[];
|
|
6195
5187
|
name: string;
|
|
6196
5188
|
properties: any[];
|
|
6197
5189
|
url: string;
|
|
6198
5190
|
};
|
|
6199
|
-
|
|
6200
|
-
deprecatedDescription: string;
|
|
5191
|
+
roaudioplayerevent: {
|
|
6201
5192
|
description: string;
|
|
6202
5193
|
implementers: {
|
|
6203
5194
|
name: string;
|
|
6204
5195
|
url: string;
|
|
6205
5196
|
}[];
|
|
6206
|
-
isDeprecated: boolean;
|
|
6207
5197
|
methods: {
|
|
6208
5198
|
name: string;
|
|
6209
5199
|
params: any[];
|
|
@@ -6214,19 +5204,6 @@ export declare const events: {
|
|
|
6214
5204
|
url: string;
|
|
6215
5205
|
};
|
|
6216
5206
|
rocecstatusevent: {
|
|
6217
|
-
availableSince: string;
|
|
6218
|
-
description: string;
|
|
6219
|
-
implementers: any[];
|
|
6220
|
-
methods: {
|
|
6221
|
-
name: string;
|
|
6222
|
-
params: any[];
|
|
6223
|
-
returnType: string;
|
|
6224
|
-
}[];
|
|
6225
|
-
name: string;
|
|
6226
|
-
properties: any[];
|
|
6227
|
-
url: string;
|
|
6228
|
-
};
|
|
6229
|
-
rochannelstoreevent: {
|
|
6230
5207
|
description: string;
|
|
6231
5208
|
implementers: {
|
|
6232
5209
|
name: string;
|
|
@@ -6241,14 +5218,12 @@ export declare const events: {
|
|
|
6241
5218
|
properties: any[];
|
|
6242
5219
|
url: string;
|
|
6243
5220
|
};
|
|
6244
|
-
|
|
6245
|
-
deprecatedDescription: string;
|
|
5221
|
+
rochannelstoreevent: {
|
|
6246
5222
|
description: string;
|
|
6247
5223
|
implementers: {
|
|
6248
5224
|
name: string;
|
|
6249
5225
|
url: string;
|
|
6250
5226
|
}[];
|
|
6251
|
-
isDeprecated: boolean;
|
|
6252
5227
|
methods: {
|
|
6253
5228
|
name: string;
|
|
6254
5229
|
params: any[];
|
|
@@ -6289,35 +5264,6 @@ export declare const events: {
|
|
|
6289
5264
|
properties: any[];
|
|
6290
5265
|
url: string;
|
|
6291
5266
|
};
|
|
6292
|
-
rogridscreenevent: {
|
|
6293
|
-
deprecatedDescription: string;
|
|
6294
|
-
description: string;
|
|
6295
|
-
implementers: {
|
|
6296
|
-
name: string;
|
|
6297
|
-
url: string;
|
|
6298
|
-
}[];
|
|
6299
|
-
isDeprecated: boolean;
|
|
6300
|
-
methods: {
|
|
6301
|
-
name: string;
|
|
6302
|
-
params: any[];
|
|
6303
|
-
returnType: string;
|
|
6304
|
-
}[];
|
|
6305
|
-
name: string;
|
|
6306
|
-
properties: any[];
|
|
6307
|
-
url: string;
|
|
6308
|
-
};
|
|
6309
|
-
rohdmihotplugevent: {
|
|
6310
|
-
description: string;
|
|
6311
|
-
implementers: any[];
|
|
6312
|
-
methods: {
|
|
6313
|
-
name: string;
|
|
6314
|
-
params: any[];
|
|
6315
|
-
returnType: string;
|
|
6316
|
-
}[];
|
|
6317
|
-
name: string;
|
|
6318
|
-
properties: any[];
|
|
6319
|
-
url: string;
|
|
6320
|
-
};
|
|
6321
5267
|
rohdmistatusevent: {
|
|
6322
5268
|
description: string;
|
|
6323
5269
|
implementers: any[];
|
|
@@ -6330,23 +5276,6 @@ export declare const events: {
|
|
|
6330
5276
|
properties: any[];
|
|
6331
5277
|
url: string;
|
|
6332
5278
|
};
|
|
6333
|
-
roimagecanvasevent: {
|
|
6334
|
-
deprecatedDescription: string;
|
|
6335
|
-
description: string;
|
|
6336
|
-
implementers: {
|
|
6337
|
-
name: string;
|
|
6338
|
-
url: string;
|
|
6339
|
-
}[];
|
|
6340
|
-
isDeprecated: boolean;
|
|
6341
|
-
methods: {
|
|
6342
|
-
name: string;
|
|
6343
|
-
params: any[];
|
|
6344
|
-
returnType: string;
|
|
6345
|
-
}[];
|
|
6346
|
-
name: string;
|
|
6347
|
-
properties: any[];
|
|
6348
|
-
url: string;
|
|
6349
|
-
};
|
|
6350
5279
|
roinputevent: {
|
|
6351
5280
|
description: string;
|
|
6352
5281
|
implementers: {
|
|
@@ -6362,57 +5291,6 @@ export declare const events: {
|
|
|
6362
5291
|
properties: any[];
|
|
6363
5292
|
url: string;
|
|
6364
5293
|
};
|
|
6365
|
-
rokeyboardscreenevent: {
|
|
6366
|
-
deprecatedDescription: string;
|
|
6367
|
-
description: string;
|
|
6368
|
-
implementers: {
|
|
6369
|
-
name: string;
|
|
6370
|
-
url: string;
|
|
6371
|
-
}[];
|
|
6372
|
-
isDeprecated: boolean;
|
|
6373
|
-
methods: {
|
|
6374
|
-
name: string;
|
|
6375
|
-
params: any[];
|
|
6376
|
-
returnType: string;
|
|
6377
|
-
}[];
|
|
6378
|
-
name: string;
|
|
6379
|
-
properties: any[];
|
|
6380
|
-
url: string;
|
|
6381
|
-
};
|
|
6382
|
-
rolistscreenevent: {
|
|
6383
|
-
deprecatedDescription: string;
|
|
6384
|
-
description: string;
|
|
6385
|
-
implementers: {
|
|
6386
|
-
name: string;
|
|
6387
|
-
url: string;
|
|
6388
|
-
}[];
|
|
6389
|
-
isDeprecated: boolean;
|
|
6390
|
-
methods: {
|
|
6391
|
-
name: string;
|
|
6392
|
-
params: any[];
|
|
6393
|
-
returnType: string;
|
|
6394
|
-
}[];
|
|
6395
|
-
name: string;
|
|
6396
|
-
properties: any[];
|
|
6397
|
-
url: string;
|
|
6398
|
-
};
|
|
6399
|
-
romessagedialogevent: {
|
|
6400
|
-
deprecatedDescription: string;
|
|
6401
|
-
description: string;
|
|
6402
|
-
implementers: {
|
|
6403
|
-
name: string;
|
|
6404
|
-
url: string;
|
|
6405
|
-
}[];
|
|
6406
|
-
isDeprecated: boolean;
|
|
6407
|
-
methods: {
|
|
6408
|
-
name: string;
|
|
6409
|
-
params: any[];
|
|
6410
|
-
returnType: string;
|
|
6411
|
-
}[];
|
|
6412
|
-
name: string;
|
|
6413
|
-
properties: any[];
|
|
6414
|
-
url: string;
|
|
6415
|
-
};
|
|
6416
5294
|
romicrophoneevent: {
|
|
6417
5295
|
description: string;
|
|
6418
5296
|
implementers: {
|
|
@@ -6428,91 +5306,6 @@ export declare const events: {
|
|
|
6428
5306
|
properties: any[];
|
|
6429
5307
|
url: string;
|
|
6430
5308
|
};
|
|
6431
|
-
roonelinedialogevent: {
|
|
6432
|
-
deprecatedDescription: string;
|
|
6433
|
-
description: string;
|
|
6434
|
-
implementers: {
|
|
6435
|
-
name: string;
|
|
6436
|
-
url: string;
|
|
6437
|
-
}[];
|
|
6438
|
-
isDeprecated: boolean;
|
|
6439
|
-
methods: {
|
|
6440
|
-
name: string;
|
|
6441
|
-
params: any[];
|
|
6442
|
-
returnType: string;
|
|
6443
|
-
}[];
|
|
6444
|
-
name: string;
|
|
6445
|
-
properties: any[];
|
|
6446
|
-
url: string;
|
|
6447
|
-
};
|
|
6448
|
-
roparagraphscreenevent: {
|
|
6449
|
-
deprecatedDescription: string;
|
|
6450
|
-
description: string;
|
|
6451
|
-
implementers: {
|
|
6452
|
-
name: string;
|
|
6453
|
-
url: string;
|
|
6454
|
-
}[];
|
|
6455
|
-
isDeprecated: boolean;
|
|
6456
|
-
methods: {
|
|
6457
|
-
name: string;
|
|
6458
|
-
params: any[];
|
|
6459
|
-
returnType: string;
|
|
6460
|
-
}[];
|
|
6461
|
-
name: string;
|
|
6462
|
-
properties: any[];
|
|
6463
|
-
url: string;
|
|
6464
|
-
};
|
|
6465
|
-
ropinentrydialogevent: {
|
|
6466
|
-
deprecatedDescription: string;
|
|
6467
|
-
description: string;
|
|
6468
|
-
implementers: {
|
|
6469
|
-
name: string;
|
|
6470
|
-
url: string;
|
|
6471
|
-
}[];
|
|
6472
|
-
isDeprecated: boolean;
|
|
6473
|
-
methods: {
|
|
6474
|
-
name: string;
|
|
6475
|
-
params: any[];
|
|
6476
|
-
returnType: string;
|
|
6477
|
-
}[];
|
|
6478
|
-
name: string;
|
|
6479
|
-
properties: any[];
|
|
6480
|
-
url: string;
|
|
6481
|
-
};
|
|
6482
|
-
roposterscreenevent: {
|
|
6483
|
-
deprecatedDescription: string;
|
|
6484
|
-
description: string;
|
|
6485
|
-
implementers: {
|
|
6486
|
-
name: string;
|
|
6487
|
-
url: string;
|
|
6488
|
-
}[];
|
|
6489
|
-
isDeprecated: boolean;
|
|
6490
|
-
methods: {
|
|
6491
|
-
name: string;
|
|
6492
|
-
params: any[];
|
|
6493
|
-
returnType: string;
|
|
6494
|
-
}[];
|
|
6495
|
-
name: string;
|
|
6496
|
-
properties: any[];
|
|
6497
|
-
url: string;
|
|
6498
|
-
};
|
|
6499
|
-
rosearchscreenevent: {
|
|
6500
|
-
deprecatedDescription: string;
|
|
6501
|
-
description: string;
|
|
6502
|
-
implementers: {
|
|
6503
|
-
name: string;
|
|
6504
|
-
url: string;
|
|
6505
|
-
}[];
|
|
6506
|
-
isDeprecated: boolean;
|
|
6507
|
-
methods: {
|
|
6508
|
-
name: string;
|
|
6509
|
-
params: any[];
|
|
6510
|
-
returnType: string;
|
|
6511
|
-
}[];
|
|
6512
|
-
name: string;
|
|
6513
|
-
properties: any[];
|
|
6514
|
-
url: string;
|
|
6515
|
-
};
|
|
6516
5309
|
rosgnodeevent: {
|
|
6517
5310
|
description: string;
|
|
6518
5311
|
implementers: {
|
|
@@ -6543,23 +5336,6 @@ export declare const events: {
|
|
|
6543
5336
|
properties: any[];
|
|
6544
5337
|
url: string;
|
|
6545
5338
|
};
|
|
6546
|
-
roslideshowevent: {
|
|
6547
|
-
deprecatedDescription: string;
|
|
6548
|
-
description: string;
|
|
6549
|
-
implementers: {
|
|
6550
|
-
name: string;
|
|
6551
|
-
url: string;
|
|
6552
|
-
}[];
|
|
6553
|
-
isDeprecated: boolean;
|
|
6554
|
-
methods: {
|
|
6555
|
-
name: string;
|
|
6556
|
-
params: any[];
|
|
6557
|
-
returnType: string;
|
|
6558
|
-
}[];
|
|
6559
|
-
name: string;
|
|
6560
|
-
properties: any[];
|
|
6561
|
-
url: string;
|
|
6562
|
-
};
|
|
6563
5339
|
rosocketevent: {
|
|
6564
5340
|
description: string;
|
|
6565
5341
|
implementers: {
|
|
@@ -6575,23 +5351,6 @@ export declare const events: {
|
|
|
6575
5351
|
properties: any[];
|
|
6576
5352
|
url: string;
|
|
6577
5353
|
};
|
|
6578
|
-
rospringboardscreenevent: {
|
|
6579
|
-
deprecatedDescription: string;
|
|
6580
|
-
description: string;
|
|
6581
|
-
implementers: {
|
|
6582
|
-
name: string;
|
|
6583
|
-
url: string;
|
|
6584
|
-
}[];
|
|
6585
|
-
isDeprecated: boolean;
|
|
6586
|
-
methods: {
|
|
6587
|
-
name: string;
|
|
6588
|
-
params: any[];
|
|
6589
|
-
returnType: string;
|
|
6590
|
-
}[];
|
|
6591
|
-
name: string;
|
|
6592
|
-
properties: any[];
|
|
6593
|
-
url: string;
|
|
6594
|
-
};
|
|
6595
5354
|
rosystemlogevent: {
|
|
6596
5355
|
description: string;
|
|
6597
5356
|
implementers: any[];
|
|
@@ -6604,23 +5363,6 @@ export declare const events: {
|
|
|
6604
5363
|
properties: any[];
|
|
6605
5364
|
url: string;
|
|
6606
5365
|
};
|
|
6607
|
-
rotextscreenevent: {
|
|
6608
|
-
deprecatedDescription: string;
|
|
6609
|
-
description: string;
|
|
6610
|
-
implementers: {
|
|
6611
|
-
name: string;
|
|
6612
|
-
url: string;
|
|
6613
|
-
}[];
|
|
6614
|
-
isDeprecated: boolean;
|
|
6615
|
-
methods: {
|
|
6616
|
-
name: string;
|
|
6617
|
-
params: any[];
|
|
6618
|
-
returnType: string;
|
|
6619
|
-
}[];
|
|
6620
|
-
name: string;
|
|
6621
|
-
properties: any[];
|
|
6622
|
-
url: string;
|
|
6623
|
-
};
|
|
6624
5366
|
rotexttospeechevent: {
|
|
6625
5367
|
description: string;
|
|
6626
5368
|
implementers: {
|
|
@@ -6696,23 +5438,6 @@ export declare const events: {
|
|
|
6696
5438
|
properties: any[];
|
|
6697
5439
|
url: string;
|
|
6698
5440
|
};
|
|
6699
|
-
rovideoscreenevent: {
|
|
6700
|
-
deprecatedDescription: string;
|
|
6701
|
-
description: string;
|
|
6702
|
-
implementers: {
|
|
6703
|
-
name: string;
|
|
6704
|
-
url: string;
|
|
6705
|
-
}[];
|
|
6706
|
-
isDeprecated: boolean;
|
|
6707
|
-
methods: {
|
|
6708
|
-
name: string;
|
|
6709
|
-
params: any[];
|
|
6710
|
-
returnType: string;
|
|
6711
|
-
}[];
|
|
6712
|
-
name: string;
|
|
6713
|
-
properties: any[];
|
|
6714
|
-
url: string;
|
|
6715
|
-
};
|
|
6716
5441
|
};
|
|
6717
5442
|
interface BrightScriptDocLookup {
|
|
6718
5443
|
name: string;
|
|
@@ -6729,6 +5454,7 @@ export interface BRSBaseMethodData extends PossiblyDeprecated {
|
|
|
6729
5454
|
isRequired: boolean;
|
|
6730
5455
|
type: string;
|
|
6731
5456
|
}[];
|
|
5457
|
+
isVariadic?: boolean;
|
|
6732
5458
|
returnType: string;
|
|
6733
5459
|
}
|
|
6734
5460
|
export interface BRSEventMethodData extends BRSBaseMethodData {
|
|
@@ -6756,6 +5482,8 @@ export interface SGNodeData extends BrightScriptDocLookup {
|
|
|
6756
5482
|
fields: BRSFieldData[];
|
|
6757
5483
|
events: BrightScriptDocLookup[];
|
|
6758
5484
|
interfaces: BrightScriptDocLookup[];
|
|
5485
|
+
extends?: BrightScriptDocLookup;
|
|
5486
|
+
methods?: BRSInterfaceMethodData[];
|
|
6759
5487
|
}
|
|
6760
5488
|
export interface BRSComponentData extends BrightScriptDocLookup, PossiblyDeprecated {
|
|
6761
5489
|
interfaces: BrightScriptDocLookup[];
|