brighterscript 1.0.0-alpha.24 → 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 +493 -233
- 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 +61 -13
- package/dist/DiagnosticMessages.js +116 -19
- 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 +150 -69
- 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 +158 -79
- package/dist/Program.js +831 -695
- package/dist/Program.js.map +1 -1
- package/dist/ProgramBuilder.d.ts +22 -12
- package/dist/ProgramBuilder.js +130 -103
- package/dist/ProgramBuilder.js.map +1 -1
- package/dist/Scope.d.ts +87 -133
- package/dist/Scope.js +450 -510
- 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 +89 -34
- package/dist/SymbolTable.js +239 -114
- 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 -69
- 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 -104
- package/dist/astUtils/reflection.js +220 -174
- 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 +53 -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 +10 -2
- package/dist/bscPlugin/BscPlugin.js +33 -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.js +14 -11
- package/dist/bscPlugin/codeActions/CodeActionsProcessor.js.map +1 -1
- package/dist/bscPlugin/codeActions/CodeActionsProcessor.spec.js +16 -16
- package/dist/bscPlugin/codeActions/CodeActionsProcessor.spec.js.map +1 -1
- package/dist/bscPlugin/completions/CompletionsProcessor.d.ts +52 -1
- package/dist/bscPlugin/completions/CompletionsProcessor.js +517 -26
- package/dist/bscPlugin/completions/CompletionsProcessor.js.map +1 -1
- 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 +7 -7
- package/dist/bscPlugin/hover/HoverProcessor.js +123 -125
- package/dist/bscPlugin/hover/HoverProcessor.js.map +1 -1
- package/dist/bscPlugin/hover/HoverProcessor.spec.js +371 -53
- package/dist/bscPlugin/hover/HoverProcessor.spec.js.map +1 -1
- package/dist/bscPlugin/semanticTokens/BrsFileSemanticTokensProcessor.d.ts +2 -1
- package/dist/bscPlugin/semanticTokens/BrsFileSemanticTokensProcessor.js +85 -23
- package/dist/bscPlugin/semanticTokens/BrsFileSemanticTokensProcessor.js.map +1 -1
- package/dist/bscPlugin/semanticTokens/BrsFileSemanticTokensProcessor.spec.js +83 -6
- package/dist/bscPlugin/semanticTokens/BrsFileSemanticTokensProcessor.spec.js.map +1 -1
- 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/{BrsFilePreTranspileProcessor.d.ts → BrsFileTranspileProcessor.d.ts} +4 -2
- package/dist/bscPlugin/transpile/{BrsFilePreTranspileProcessor.js → BrsFileTranspileProcessor.js} +33 -9
- 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 +13 -5
- package/dist/bscPlugin/validation/BrsFileValidator.js +259 -49
- package/dist/bscPlugin/validation/BrsFileValidator.js.map +1 -1
- package/dist/bscPlugin/validation/BrsFileValidator.spec.js +230 -14
- package/dist/bscPlugin/validation/BrsFileValidator.spec.js.map +1 -1
- 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 +54 -27
- package/dist/bscPlugin/validation/ScopeValidator.js +483 -286
- 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 +104 -13
- 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 +523 -493
- package/dist/files/BrsFile.Class.spec.js.map +1 -1
- package/dist/files/BrsFile.d.ts +112 -111
- package/dist/files/BrsFile.js +741 -1032
- package/dist/files/BrsFile.js.map +1 -1
- package/dist/files/BrsFile.spec.js +1728 -1232
- 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 -118
- 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 +48 -40
- package/dist/files/tests/imports.spec.js.map +1 -1
- package/dist/files/tests/optionalChaning.spec.js +84 -24
- package/dist/files/tests/optionalChaning.spec.js.map +1 -1
- package/dist/globalCallables.js +16 -21
- package/dist/globalCallables.js.map +1 -1
- package/dist/index.d.ts +12 -1
- package/dist/index.js +12 -1
- package/dist/index.js.map +1 -1
- package/dist/interfaces.d.ts +389 -161
- 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 +181 -135
- 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 +8 -0
- package/dist/lexer/TokenKind.js +24 -4
- 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 -176
- package/dist/parser/Expression.js +523 -405
- package/dist/parser/Expression.js.map +1 -1
- package/dist/parser/Parser.Class.spec.js +151 -145
- package/dist/parser/Parser.Class.spec.js.map +1 -1
- package/dist/parser/Parser.d.ts +43 -201
- package/dist/parser/Parser.js +446 -962
- package/dist/parser/Parser.js.map +1 -1
- package/dist/parser/Parser.spec.d.ts +3 -1
- package/dist/parser/Parser.spec.js +1002 -846
- 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 +183 -131
- package/dist/parser/Statement.js +549 -387
- 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 +59 -59
- 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 +96 -57
- package/dist/parser/tests/expression/TemplateStringExpression.spec.js.map +1 -1
- package/dist/parser/tests/expression/TernaryExpression.spec.js +89 -89
- 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.js +82 -33
- package/dist/parser/tests/statement/ConstStatement.spec.js.map +1 -1
- 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 +98 -302
- 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 +35 -33
- 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 +2 -2
- 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 +5 -5
- 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 +5892 -10081
- package/dist/roku-types/index.d.ts +622 -1719
- 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 +9 -5
- package/dist/types/DynamicType.js +15 -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 +132 -137
- package/dist/util.js +796 -362
- package/dist/util.js.map +1 -1
- package/dist/validators/ClassValidator.d.ts +8 -25
- package/dist/validators/ClassValidator.js +96 -176
- package/dist/validators/ClassValidator.js.map +1 -1
- package/package.json +165 -152
- package/dist/astUtils/AstEditor.js.map +0 -1
- package/dist/astUtils/AstEditor.spec.js.map +0 -1
- 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/serialize/BslibInjector.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,6 +1583,21 @@ 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,9 +1742,8 @@ export declare const components: {
|
|
|
1604
1742
|
name: string;
|
|
1605
1743
|
url: string;
|
|
1606
1744
|
};
|
|
1607
|
-
|
|
1745
|
+
rocecstatus: {
|
|
1608
1746
|
constructors: any[];
|
|
1609
|
-
deprecatedDescription: string;
|
|
1610
1747
|
description: string;
|
|
1611
1748
|
events: {
|
|
1612
1749
|
name: string;
|
|
@@ -1616,7 +1753,6 @@ export declare const components: {
|
|
|
1616
1753
|
name: string;
|
|
1617
1754
|
url: string;
|
|
1618
1755
|
}[];
|
|
1619
|
-
isDeprecated: boolean;
|
|
1620
1756
|
name: string;
|
|
1621
1757
|
url: string;
|
|
1622
1758
|
};
|
|
@@ -1637,25 +1773,6 @@ export declare const components: {
|
|
|
1637
1773
|
name: string;
|
|
1638
1774
|
url: string;
|
|
1639
1775
|
};
|
|
1640
|
-
rocoderegistrationscreen: {
|
|
1641
|
-
constructors: {
|
|
1642
|
-
params: any[];
|
|
1643
|
-
returnType: string;
|
|
1644
|
-
}[];
|
|
1645
|
-
deprecatedDescription: string;
|
|
1646
|
-
description: string;
|
|
1647
|
-
events: {
|
|
1648
|
-
name: string;
|
|
1649
|
-
url: string;
|
|
1650
|
-
}[];
|
|
1651
|
-
interfaces: {
|
|
1652
|
-
name: string;
|
|
1653
|
-
url: string;
|
|
1654
|
-
}[];
|
|
1655
|
-
isDeprecated: boolean;
|
|
1656
|
-
name: string;
|
|
1657
|
-
url: string;
|
|
1658
|
-
};
|
|
1659
1776
|
rocompositor: {
|
|
1660
1777
|
constructors: {
|
|
1661
1778
|
params: any[];
|
|
@@ -1743,6 +1860,18 @@ export declare const components: {
|
|
|
1743
1860
|
name: string;
|
|
1744
1861
|
url: string;
|
|
1745
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
|
+
};
|
|
1746
1875
|
roevpcipher: {
|
|
1747
1876
|
constructors: any[];
|
|
1748
1877
|
description: string;
|
|
@@ -1807,34 +1936,6 @@ export declare const components: {
|
|
|
1807
1936
|
name: string;
|
|
1808
1937
|
url: string;
|
|
1809
1938
|
};
|
|
1810
|
-
rofontmetrics: {
|
|
1811
|
-
constructors: ({
|
|
1812
|
-
params: {
|
|
1813
|
-
default: any;
|
|
1814
|
-
isRequired: boolean;
|
|
1815
|
-
name: string;
|
|
1816
|
-
type: string;
|
|
1817
|
-
}[];
|
|
1818
|
-
returnType: string;
|
|
1819
|
-
} | {
|
|
1820
|
-
params: {
|
|
1821
|
-
isRequired: boolean;
|
|
1822
|
-
name: string;
|
|
1823
|
-
type: string;
|
|
1824
|
-
}[];
|
|
1825
|
-
returnType: string;
|
|
1826
|
-
})[];
|
|
1827
|
-
deprecatedDescription: string;
|
|
1828
|
-
description: string;
|
|
1829
|
-
events: any[];
|
|
1830
|
-
interfaces: {
|
|
1831
|
-
name: string;
|
|
1832
|
-
url: string;
|
|
1833
|
-
}[];
|
|
1834
|
-
isDeprecated: boolean;
|
|
1835
|
-
name: string;
|
|
1836
|
-
url: string;
|
|
1837
|
-
};
|
|
1838
1939
|
rofontregistry: {
|
|
1839
1940
|
constructors: {
|
|
1840
1941
|
params: any[];
|
|
@@ -1860,27 +1961,22 @@ export declare const components: {
|
|
|
1860
1961
|
name: string;
|
|
1861
1962
|
url: string;
|
|
1862
1963
|
};
|
|
1863
|
-
|
|
1864
|
-
constructors:
|
|
1865
|
-
params: any[];
|
|
1866
|
-
returnType: string;
|
|
1867
|
-
}[];
|
|
1868
|
-
deprecatedDescription: string;
|
|
1964
|
+
rohdmistatus: {
|
|
1965
|
+
constructors: any[];
|
|
1869
1966
|
description: string;
|
|
1870
|
-
events:
|
|
1871
|
-
name: string;
|
|
1872
|
-
url: string;
|
|
1873
|
-
}[];
|
|
1967
|
+
events: any[];
|
|
1874
1968
|
interfaces: {
|
|
1875
1969
|
name: string;
|
|
1876
1970
|
url: string;
|
|
1877
1971
|
}[];
|
|
1878
|
-
isDeprecated: boolean;
|
|
1879
1972
|
name: string;
|
|
1880
1973
|
url: string;
|
|
1881
1974
|
};
|
|
1882
|
-
|
|
1883
|
-
constructors:
|
|
1975
|
+
rohmac: {
|
|
1976
|
+
constructors: {
|
|
1977
|
+
params: any[];
|
|
1978
|
+
returnType: string;
|
|
1979
|
+
}[];
|
|
1884
1980
|
description: string;
|
|
1885
1981
|
events: any[];
|
|
1886
1982
|
interfaces: {
|
|
@@ -1890,7 +1986,7 @@ export declare const components: {
|
|
|
1890
1986
|
name: string;
|
|
1891
1987
|
url: string;
|
|
1892
1988
|
};
|
|
1893
|
-
|
|
1989
|
+
rohttpagent: {
|
|
1894
1990
|
constructors: {
|
|
1895
1991
|
params: any[];
|
|
1896
1992
|
returnType: string;
|
|
@@ -1904,7 +2000,7 @@ export declare const components: {
|
|
|
1904
2000
|
name: string;
|
|
1905
2001
|
url: string;
|
|
1906
2002
|
};
|
|
1907
|
-
|
|
2003
|
+
roimagemetadata: {
|
|
1908
2004
|
constructors: {
|
|
1909
2005
|
params: any[];
|
|
1910
2006
|
returnType: string;
|
|
@@ -1918,37 +2014,7 @@ export declare const components: {
|
|
|
1918
2014
|
name: string;
|
|
1919
2015
|
url: string;
|
|
1920
2016
|
};
|
|
1921
|
-
|
|
1922
|
-
constructors: {
|
|
1923
|
-
params: any[];
|
|
1924
|
-
returnType: string;
|
|
1925
|
-
}[];
|
|
1926
|
-
deprecatedDescription: string;
|
|
1927
|
-
description: string;
|
|
1928
|
-
events: {
|
|
1929
|
-
name: string;
|
|
1930
|
-
url: string;
|
|
1931
|
-
}[];
|
|
1932
|
-
interfaces: {
|
|
1933
|
-
name: string;
|
|
1934
|
-
url: string;
|
|
1935
|
-
}[];
|
|
1936
|
-
isDeprecated: boolean;
|
|
1937
|
-
name: string;
|
|
1938
|
-
url: string;
|
|
1939
|
-
};
|
|
1940
|
-
roimagemetadata: {
|
|
1941
|
-
constructors: any[];
|
|
1942
|
-
description: string;
|
|
1943
|
-
events: any[];
|
|
1944
|
-
interfaces: {
|
|
1945
|
-
name: string;
|
|
1946
|
-
url: string;
|
|
1947
|
-
}[];
|
|
1948
|
-
name: string;
|
|
1949
|
-
url: string;
|
|
1950
|
-
};
|
|
1951
|
-
roinput: {
|
|
2017
|
+
roinput: {
|
|
1952
2018
|
constructors: {
|
|
1953
2019
|
params: any[];
|
|
1954
2020
|
returnType: string;
|
|
@@ -1990,25 +2056,6 @@ export declare const components: {
|
|
|
1990
2056
|
name: string;
|
|
1991
2057
|
url: string;
|
|
1992
2058
|
};
|
|
1993
|
-
rokeyboardscreen: {
|
|
1994
|
-
constructors: {
|
|
1995
|
-
params: any[];
|
|
1996
|
-
returnType: string;
|
|
1997
|
-
}[];
|
|
1998
|
-
deprecatedDescription: string;
|
|
1999
|
-
description: string;
|
|
2000
|
-
events: {
|
|
2001
|
-
name: string;
|
|
2002
|
-
url: string;
|
|
2003
|
-
}[];
|
|
2004
|
-
interfaces: {
|
|
2005
|
-
name: string;
|
|
2006
|
-
url: string;
|
|
2007
|
-
}[];
|
|
2008
|
-
isDeprecated: boolean;
|
|
2009
|
-
name: string;
|
|
2010
|
-
url: string;
|
|
2011
|
-
};
|
|
2012
2059
|
rolist: {
|
|
2013
2060
|
constructors: {
|
|
2014
2061
|
params: any[];
|
|
@@ -2023,22 +2070,6 @@ export declare const components: {
|
|
|
2023
2070
|
name: string;
|
|
2024
2071
|
url: string;
|
|
2025
2072
|
};
|
|
2026
|
-
rolistscreen: {
|
|
2027
|
-
constructors: any[];
|
|
2028
|
-
deprecatedDescription: string;
|
|
2029
|
-
description: string;
|
|
2030
|
-
events: {
|
|
2031
|
-
name: string;
|
|
2032
|
-
url: string;
|
|
2033
|
-
}[];
|
|
2034
|
-
interfaces: {
|
|
2035
|
-
name: string;
|
|
2036
|
-
url: string;
|
|
2037
|
-
}[];
|
|
2038
|
-
isDeprecated: boolean;
|
|
2039
|
-
name: string;
|
|
2040
|
-
url: string;
|
|
2041
|
-
};
|
|
2042
2073
|
rolocalization: {
|
|
2043
2074
|
constructors: {
|
|
2044
2075
|
params: any[];
|
|
@@ -2064,25 +2095,6 @@ export declare const components: {
|
|
|
2064
2095
|
name: string;
|
|
2065
2096
|
url: string;
|
|
2066
2097
|
};
|
|
2067
|
-
romessagedialog: {
|
|
2068
|
-
constructors: {
|
|
2069
|
-
params: any[];
|
|
2070
|
-
returnType: string;
|
|
2071
|
-
}[];
|
|
2072
|
-
deprecatedDescription: string;
|
|
2073
|
-
description: string;
|
|
2074
|
-
events: {
|
|
2075
|
-
name: string;
|
|
2076
|
-
url: string;
|
|
2077
|
-
}[];
|
|
2078
|
-
interfaces: {
|
|
2079
|
-
name: string;
|
|
2080
|
-
url: string;
|
|
2081
|
-
}[];
|
|
2082
|
-
isDeprecated: boolean;
|
|
2083
|
-
name: string;
|
|
2084
|
-
url: string;
|
|
2085
|
-
};
|
|
2086
2098
|
romessageport: {
|
|
2087
2099
|
constructors: {
|
|
2088
2100
|
params: any[];
|
|
@@ -2111,41 +2123,6 @@ export declare const components: {
|
|
|
2111
2123
|
name: string;
|
|
2112
2124
|
url: string;
|
|
2113
2125
|
};
|
|
2114
|
-
roonelinedialog: {
|
|
2115
|
-
constructors: any[];
|
|
2116
|
-
deprecatedDescription: string;
|
|
2117
|
-
description: string;
|
|
2118
|
-
events: {
|
|
2119
|
-
name: string;
|
|
2120
|
-
url: string;
|
|
2121
|
-
}[];
|
|
2122
|
-
interfaces: {
|
|
2123
|
-
name: string;
|
|
2124
|
-
url: string;
|
|
2125
|
-
}[];
|
|
2126
|
-
isDeprecated: boolean;
|
|
2127
|
-
name: string;
|
|
2128
|
-
url: string;
|
|
2129
|
-
};
|
|
2130
|
-
roparagraphscreen: {
|
|
2131
|
-
constructors: {
|
|
2132
|
-
params: any[];
|
|
2133
|
-
returnType: string;
|
|
2134
|
-
}[];
|
|
2135
|
-
deprecatedDescription: string;
|
|
2136
|
-
description: string;
|
|
2137
|
-
events: {
|
|
2138
|
-
name: string;
|
|
2139
|
-
url: string;
|
|
2140
|
-
}[];
|
|
2141
|
-
interfaces: {
|
|
2142
|
-
name: string;
|
|
2143
|
-
url: string;
|
|
2144
|
-
}[];
|
|
2145
|
-
isDeprecated: boolean;
|
|
2146
|
-
name: string;
|
|
2147
|
-
url: string;
|
|
2148
|
-
};
|
|
2149
2126
|
ropath: {
|
|
2150
2127
|
constructors: {
|
|
2151
2128
|
params: {
|
|
@@ -2164,41 +2141,6 @@ export declare const components: {
|
|
|
2164
2141
|
name: string;
|
|
2165
2142
|
url: string;
|
|
2166
2143
|
};
|
|
2167
|
-
ropinentrydialog: {
|
|
2168
|
-
constructors: any[];
|
|
2169
|
-
deprecatedDescription: string;
|
|
2170
|
-
description: string;
|
|
2171
|
-
events: {
|
|
2172
|
-
name: string;
|
|
2173
|
-
url: string;
|
|
2174
|
-
}[];
|
|
2175
|
-
interfaces: {
|
|
2176
|
-
name: string;
|
|
2177
|
-
url: string;
|
|
2178
|
-
}[];
|
|
2179
|
-
isDeprecated: boolean;
|
|
2180
|
-
name: string;
|
|
2181
|
-
url: string;
|
|
2182
|
-
};
|
|
2183
|
-
roposterscreen: {
|
|
2184
|
-
constructors: {
|
|
2185
|
-
params: any[];
|
|
2186
|
-
returnType: string;
|
|
2187
|
-
}[];
|
|
2188
|
-
deprecatedDescription: string;
|
|
2189
|
-
description: string;
|
|
2190
|
-
events: {
|
|
2191
|
-
name: string;
|
|
2192
|
-
url: string;
|
|
2193
|
-
}[];
|
|
2194
|
-
interfaces: {
|
|
2195
|
-
name: string;
|
|
2196
|
-
url: string;
|
|
2197
|
-
}[];
|
|
2198
|
-
isDeprecated: boolean;
|
|
2199
|
-
name: string;
|
|
2200
|
-
url: string;
|
|
2201
|
-
};
|
|
2202
2144
|
roprogramguide: {
|
|
2203
2145
|
constructors: any[];
|
|
2204
2146
|
description: string;
|
|
@@ -2287,7 +2229,7 @@ export declare const components: {
|
|
|
2287
2229
|
name: string;
|
|
2288
2230
|
url: string;
|
|
2289
2231
|
};
|
|
2290
|
-
|
|
2232
|
+
roremoteinfo: {
|
|
2291
2233
|
constructors: {
|
|
2292
2234
|
params: any[];
|
|
2293
2235
|
returnType: string;
|
|
@@ -2301,49 +2243,29 @@ export declare const components: {
|
|
|
2301
2243
|
name: string;
|
|
2302
2244
|
url: string;
|
|
2303
2245
|
};
|
|
2304
|
-
|
|
2305
|
-
constructors: {
|
|
2306
|
-
params: {
|
|
2307
|
-
isRequired: boolean;
|
|
2308
|
-
name: string;
|
|
2309
|
-
type: string;
|
|
2310
|
-
}[];
|
|
2311
|
-
returnType: string;
|
|
2312
|
-
}[];
|
|
2313
|
-
description: string;
|
|
2314
|
-
events: {
|
|
2315
|
-
name: string;
|
|
2316
|
-
url: string;
|
|
2317
|
-
}[];
|
|
2318
|
-
interfaces: {
|
|
2319
|
-
name: string;
|
|
2320
|
-
url: string;
|
|
2321
|
-
}[];
|
|
2322
|
-
name: string;
|
|
2323
|
-
url: string;
|
|
2324
|
-
};
|
|
2325
|
-
rosearchhistory: {
|
|
2246
|
+
rorsa: {
|
|
2326
2247
|
constructors: {
|
|
2327
2248
|
params: any[];
|
|
2328
2249
|
returnType: string;
|
|
2329
2250
|
}[];
|
|
2330
|
-
deprecatedDescription: string;
|
|
2331
2251
|
description: string;
|
|
2332
2252
|
events: any[];
|
|
2333
2253
|
interfaces: {
|
|
2334
2254
|
name: string;
|
|
2335
2255
|
url: string;
|
|
2336
2256
|
}[];
|
|
2337
|
-
isDeprecated: boolean;
|
|
2338
2257
|
name: string;
|
|
2339
2258
|
url: string;
|
|
2340
2259
|
};
|
|
2341
|
-
|
|
2260
|
+
roscreen: {
|
|
2342
2261
|
constructors: {
|
|
2343
|
-
params:
|
|
2262
|
+
params: {
|
|
2263
|
+
isRequired: boolean;
|
|
2264
|
+
name: string;
|
|
2265
|
+
type: string;
|
|
2266
|
+
}[];
|
|
2344
2267
|
returnType: string;
|
|
2345
2268
|
}[];
|
|
2346
|
-
deprecatedDescription: string;
|
|
2347
2269
|
description: string;
|
|
2348
2270
|
events: {
|
|
2349
2271
|
name: string;
|
|
@@ -2353,7 +2275,6 @@ export declare const components: {
|
|
|
2353
2275
|
name: string;
|
|
2354
2276
|
url: string;
|
|
2355
2277
|
}[];
|
|
2356
|
-
isDeprecated: boolean;
|
|
2357
2278
|
name: string;
|
|
2358
2279
|
url: string;
|
|
2359
2280
|
};
|
|
@@ -2395,25 +2316,6 @@ export declare const components: {
|
|
|
2395
2316
|
name: string;
|
|
2396
2317
|
url: string;
|
|
2397
2318
|
};
|
|
2398
|
-
roslideshow: {
|
|
2399
|
-
constructors: {
|
|
2400
|
-
params: any[];
|
|
2401
|
-
returnType: string;
|
|
2402
|
-
}[];
|
|
2403
|
-
deprecatedDescription: string;
|
|
2404
|
-
description: string;
|
|
2405
|
-
events: {
|
|
2406
|
-
name: string;
|
|
2407
|
-
url: string;
|
|
2408
|
-
}[];
|
|
2409
|
-
interfaces: {
|
|
2410
|
-
name: string;
|
|
2411
|
-
url: string;
|
|
2412
|
-
}[];
|
|
2413
|
-
isDeprecated: boolean;
|
|
2414
|
-
name: string;
|
|
2415
|
-
url: string;
|
|
2416
|
-
};
|
|
2417
2319
|
rosocketaddress: {
|
|
2418
2320
|
constructors: {
|
|
2419
2321
|
params: any[];
|
|
@@ -2428,23 +2330,6 @@ export declare const components: {
|
|
|
2428
2330
|
name: string;
|
|
2429
2331
|
url: string;
|
|
2430
2332
|
};
|
|
2431
|
-
rospringboardscreen: {
|
|
2432
|
-
constructors: {
|
|
2433
|
-
params: any[];
|
|
2434
|
-
returnType: string;
|
|
2435
|
-
}[];
|
|
2436
|
-
description: string;
|
|
2437
|
-
events: {
|
|
2438
|
-
name: string;
|
|
2439
|
-
url: string;
|
|
2440
|
-
}[];
|
|
2441
|
-
interfaces: {
|
|
2442
|
-
name: string;
|
|
2443
|
-
url: string;
|
|
2444
|
-
}[];
|
|
2445
|
-
name: string;
|
|
2446
|
-
url: string;
|
|
2447
|
-
};
|
|
2448
2333
|
rosprite: {
|
|
2449
2334
|
constructors: any[];
|
|
2450
2335
|
description: string;
|
|
@@ -2485,29 +2370,16 @@ export declare const components: {
|
|
|
2485
2370
|
url: string;
|
|
2486
2371
|
};
|
|
2487
2372
|
rosystemlog: {
|
|
2488
|
-
constructors:
|
|
2489
|
-
|
|
2490
|
-
|
|
2491
|
-
interfaces: {
|
|
2492
|
-
name: string;
|
|
2493
|
-
url: string;
|
|
2373
|
+
constructors: {
|
|
2374
|
+
params: any[];
|
|
2375
|
+
returnType: string;
|
|
2494
2376
|
}[];
|
|
2495
|
-
name: string;
|
|
2496
|
-
url: string;
|
|
2497
|
-
};
|
|
2498
|
-
rotextscreen: {
|
|
2499
|
-
constructors: any[];
|
|
2500
|
-
deprecatedDescription: string;
|
|
2501
2377
|
description: string;
|
|
2502
|
-
events:
|
|
2503
|
-
name: string;
|
|
2504
|
-
url: string;
|
|
2505
|
-
}[];
|
|
2378
|
+
events: any[];
|
|
2506
2379
|
interfaces: {
|
|
2507
2380
|
name: string;
|
|
2508
2381
|
url: string;
|
|
2509
2382
|
}[];
|
|
2510
|
-
isDeprecated: boolean;
|
|
2511
2383
|
name: string;
|
|
2512
2384
|
url: string;
|
|
2513
2385
|
};
|
|
@@ -2611,25 +2483,6 @@ export declare const components: {
|
|
|
2611
2483
|
name: string;
|
|
2612
2484
|
url: string;
|
|
2613
2485
|
};
|
|
2614
|
-
rovideoscreen: {
|
|
2615
|
-
constructors: {
|
|
2616
|
-
params: any[];
|
|
2617
|
-
returnType: string;
|
|
2618
|
-
}[];
|
|
2619
|
-
deprecatedDescription: string;
|
|
2620
|
-
description: string;
|
|
2621
|
-
events: {
|
|
2622
|
-
name: string;
|
|
2623
|
-
url: string;
|
|
2624
|
-
}[];
|
|
2625
|
-
interfaces: {
|
|
2626
|
-
name: string;
|
|
2627
|
-
url: string;
|
|
2628
|
-
}[];
|
|
2629
|
-
isDeprecated: boolean;
|
|
2630
|
-
name: string;
|
|
2631
|
-
url: string;
|
|
2632
|
-
};
|
|
2633
2486
|
roxmlelement: {
|
|
2634
2487
|
constructors: any[];
|
|
2635
2488
|
description: string;
|
|
@@ -2658,12 +2511,7 @@ export declare const interfaces: {
|
|
|
2658
2511
|
implementers: any[];
|
|
2659
2512
|
methods: any[];
|
|
2660
2513
|
name: string;
|
|
2661
|
-
properties:
|
|
2662
|
-
default: string;
|
|
2663
|
-
description: string;
|
|
2664
|
-
name: string;
|
|
2665
|
-
type: string;
|
|
2666
|
-
}[];
|
|
2514
|
+
properties: any[];
|
|
2667
2515
|
};
|
|
2668
2516
|
ifappinfo: {
|
|
2669
2517
|
implementers: {
|
|
@@ -2704,8 +2552,8 @@ export declare const interfaces: {
|
|
|
2704
2552
|
name: string;
|
|
2705
2553
|
type: string;
|
|
2706
2554
|
}[];
|
|
2555
|
+
returnDescription: string;
|
|
2707
2556
|
returnType: string;
|
|
2708
|
-
returnDescription?: undefined;
|
|
2709
2557
|
} | {
|
|
2710
2558
|
description: string;
|
|
2711
2559
|
name: string;
|
|
@@ -2716,20 +2564,20 @@ export declare const interfaces: {
|
|
|
2716
2564
|
name: string;
|
|
2717
2565
|
type: string;
|
|
2718
2566
|
}[];
|
|
2719
|
-
returnDescription: string;
|
|
2720
2567
|
returnType: string;
|
|
2568
|
+
returnDescription?: undefined;
|
|
2721
2569
|
})[];
|
|
2722
2570
|
name: string;
|
|
2723
2571
|
properties: any[];
|
|
2724
2572
|
url: string;
|
|
2725
2573
|
};
|
|
2726
|
-
|
|
2574
|
+
ifappmemorymonitor: {
|
|
2727
2575
|
implementers: {
|
|
2728
2576
|
description: string;
|
|
2729
2577
|
name: string;
|
|
2730
2578
|
url: string;
|
|
2731
2579
|
}[];
|
|
2732
|
-
methods:
|
|
2580
|
+
methods: {
|
|
2733
2581
|
description: string;
|
|
2734
2582
|
name: string;
|
|
2735
2583
|
params: {
|
|
@@ -2739,26 +2587,49 @@ export declare const interfaces: {
|
|
|
2739
2587
|
name: string;
|
|
2740
2588
|
type: string;
|
|
2741
2589
|
}[];
|
|
2742
|
-
returnType: string;
|
|
2743
|
-
returnDescription?: undefined;
|
|
2744
|
-
} | {
|
|
2745
|
-
description: string;
|
|
2746
|
-
name: string;
|
|
2747
|
-
params: {
|
|
2748
|
-
default: any;
|
|
2749
|
-
isRequired: boolean;
|
|
2750
|
-
name: string;
|
|
2751
|
-
type: string;
|
|
2752
|
-
}[];
|
|
2753
2590
|
returnDescription: string;
|
|
2754
2591
|
returnType: string;
|
|
2755
|
-
}
|
|
2592
|
+
}[];
|
|
2756
2593
|
name: string;
|
|
2757
2594
|
properties: any[];
|
|
2758
2595
|
url: string;
|
|
2759
2596
|
};
|
|
2760
|
-
|
|
2761
|
-
|
|
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;
|
|
2621
|
+
name: string;
|
|
2622
|
+
type: string;
|
|
2623
|
+
}[];
|
|
2624
|
+
returnDescription: string;
|
|
2625
|
+
returnType: string;
|
|
2626
|
+
})[];
|
|
2627
|
+
name: string;
|
|
2628
|
+
properties: any[];
|
|
2629
|
+
url: string;
|
|
2630
|
+
};
|
|
2631
|
+
ifarrayget: {
|
|
2632
|
+
description: string;
|
|
2762
2633
|
implementers: {
|
|
2763
2634
|
description: string;
|
|
2764
2635
|
name: string;
|
|
@@ -3083,55 +2954,19 @@ export declare const interfaces: {
|
|
|
3083
2954
|
properties: any[];
|
|
3084
2955
|
url: string;
|
|
3085
2956
|
};
|
|
3086
|
-
|
|
3087
|
-
description: string;
|
|
2957
|
+
ifcecstatus: {
|
|
3088
2958
|
implementers: {
|
|
3089
2959
|
description: string;
|
|
3090
2960
|
name: string;
|
|
3091
2961
|
url: string;
|
|
3092
2962
|
}[];
|
|
3093
|
-
methods:
|
|
3094
|
-
description: string;
|
|
3095
|
-
name: string;
|
|
3096
|
-
params: {
|
|
3097
|
-
default: any;
|
|
3098
|
-
description: string;
|
|
3099
|
-
isRequired: boolean;
|
|
3100
|
-
name: string;
|
|
3101
|
-
type: string;
|
|
3102
|
-
}[];
|
|
3103
|
-
returnType: string;
|
|
3104
|
-
returnDescription?: undefined;
|
|
3105
|
-
} | {
|
|
2963
|
+
methods: {
|
|
3106
2964
|
description: string;
|
|
3107
2965
|
name: string;
|
|
3108
2966
|
params: any[];
|
|
3109
2967
|
returnDescription: string;
|
|
3110
2968
|
returnType: string;
|
|
3111
|
-
}
|
|
3112
|
-
description: string;
|
|
3113
|
-
name: string;
|
|
3114
|
-
params: {
|
|
3115
|
-
default: any;
|
|
3116
|
-
isRequired: boolean;
|
|
3117
|
-
name: string;
|
|
3118
|
-
type: string;
|
|
3119
|
-
}[];
|
|
3120
|
-
returnType: string;
|
|
3121
|
-
returnDescription?: undefined;
|
|
3122
|
-
} | {
|
|
3123
|
-
description: string;
|
|
3124
|
-
name: string;
|
|
3125
|
-
params: {
|
|
3126
|
-
default: any;
|
|
3127
|
-
description: string;
|
|
3128
|
-
isRequired: boolean;
|
|
3129
|
-
name: string;
|
|
3130
|
-
type: string[];
|
|
3131
|
-
}[];
|
|
3132
|
-
returnType: string;
|
|
3133
|
-
returnDescription?: undefined;
|
|
3134
|
-
})[];
|
|
2969
|
+
}[];
|
|
3135
2970
|
name: string;
|
|
3136
2971
|
properties: any[];
|
|
3137
2972
|
url: string;
|
|
@@ -3161,39 +2996,6 @@ export declare const interfaces: {
|
|
|
3161
2996
|
returnType: string;
|
|
3162
2997
|
returnDescription?: undefined;
|
|
3163
2998
|
} | {
|
|
3164
|
-
description: string;
|
|
3165
|
-
name: string;
|
|
3166
|
-
params: ({
|
|
3167
|
-
default: any;
|
|
3168
|
-
description: string;
|
|
3169
|
-
isRequired: boolean;
|
|
3170
|
-
name: string;
|
|
3171
|
-
type: string;
|
|
3172
|
-
} | {
|
|
3173
|
-
default: any;
|
|
3174
|
-
isRequired: boolean;
|
|
3175
|
-
name: string;
|
|
3176
|
-
type: string;
|
|
3177
|
-
description?: undefined;
|
|
3178
|
-
})[];
|
|
3179
|
-
returnDescription: string;
|
|
3180
|
-
returnType: string;
|
|
3181
|
-
})[];
|
|
3182
|
-
name: string;
|
|
3183
|
-
properties: any[];
|
|
3184
|
-
url: string;
|
|
3185
|
-
};
|
|
3186
|
-
ifcoderegistrationscreen: {
|
|
3187
|
-
deprecatedDescription: string;
|
|
3188
|
-
description: string;
|
|
3189
|
-
implementers: {
|
|
3190
|
-
description: string;
|
|
3191
|
-
name: string;
|
|
3192
|
-
url: string;
|
|
3193
|
-
}[];
|
|
3194
|
-
isDeprecated: boolean;
|
|
3195
|
-
methods: ({
|
|
3196
|
-
description: string;
|
|
3197
2999
|
name: string;
|
|
3198
3000
|
params: {
|
|
3199
3001
|
default: any;
|
|
@@ -3204,29 +3006,25 @@ export declare const interfaces: {
|
|
|
3204
3006
|
}[];
|
|
3205
3007
|
returnDescription: string;
|
|
3206
3008
|
returnType: string;
|
|
3009
|
+
description?: undefined;
|
|
3207
3010
|
} | {
|
|
3208
3011
|
description: string;
|
|
3209
3012
|
name: string;
|
|
3210
|
-
params: {
|
|
3013
|
+
params: ({
|
|
3211
3014
|
default: any;
|
|
3212
3015
|
description: string;
|
|
3213
3016
|
isRequired: boolean;
|
|
3214
3017
|
name: string;
|
|
3215
3018
|
type: string;
|
|
3216
|
-
}
|
|
3217
|
-
returnType: string;
|
|
3218
|
-
returnDescription?: undefined;
|
|
3219
|
-
} | {
|
|
3220
|
-
description: string;
|
|
3221
|
-
name: string;
|
|
3222
|
-
params: {
|
|
3019
|
+
} | {
|
|
3223
3020
|
default: any;
|
|
3224
3021
|
isRequired: boolean;
|
|
3225
3022
|
name: string;
|
|
3226
3023
|
type: string;
|
|
3227
|
-
|
|
3024
|
+
description?: undefined;
|
|
3025
|
+
})[];
|
|
3026
|
+
returnDescription: string;
|
|
3228
3027
|
returnType: string;
|
|
3229
|
-
returnDescription?: undefined;
|
|
3230
3028
|
})[];
|
|
3231
3029
|
name: string;
|
|
3232
3030
|
properties: any[];
|
|
@@ -3297,6 +3095,17 @@ export declare const interfaces: {
|
|
|
3297
3095
|
}[];
|
|
3298
3096
|
returnType: string;
|
|
3299
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
|
+
}[];
|
|
3107
|
+
returnDescription: string;
|
|
3108
|
+
returnType: string;
|
|
3300
3109
|
})[];
|
|
3301
3110
|
name: string;
|
|
3302
3111
|
properties: any[];
|
|
@@ -3308,7 +3117,19 @@ export declare const interfaces: {
|
|
|
3308
3117
|
name: string;
|
|
3309
3118
|
url: string;
|
|
3310
3119
|
}[];
|
|
3311
|
-
methods:
|
|
3120
|
+
methods: {
|
|
3121
|
+
description: string;
|
|
3122
|
+
name: string;
|
|
3123
|
+
params: {
|
|
3124
|
+
default: any;
|
|
3125
|
+
description: string;
|
|
3126
|
+
isRequired: boolean;
|
|
3127
|
+
name: string;
|
|
3128
|
+
type: string;
|
|
3129
|
+
}[];
|
|
3130
|
+
returnDescription: string;
|
|
3131
|
+
returnType: string;
|
|
3132
|
+
}[];
|
|
3312
3133
|
name: string;
|
|
3313
3134
|
properties: any[];
|
|
3314
3135
|
url: string;
|
|
@@ -3433,6 +3254,54 @@ export declare const interfaces: {
|
|
|
3433
3254
|
properties: any[];
|
|
3434
3255
|
url: string;
|
|
3435
3256
|
};
|
|
3257
|
+
ifdsa: {
|
|
3258
|
+
availableSince: string;
|
|
3259
|
+
description: string;
|
|
3260
|
+
implementers: {
|
|
3261
|
+
description: string;
|
|
3262
|
+
name: string;
|
|
3263
|
+
url: string;
|
|
3264
|
+
}[];
|
|
3265
|
+
methods: ({
|
|
3266
|
+
description: string;
|
|
3267
|
+
name: string;
|
|
3268
|
+
params: {
|
|
3269
|
+
default: any;
|
|
3270
|
+
isRequired: boolean;
|
|
3271
|
+
name: string;
|
|
3272
|
+
type: string;
|
|
3273
|
+
}[];
|
|
3274
|
+
returnDescription: string;
|
|
3275
|
+
returnType: string;
|
|
3276
|
+
} | {
|
|
3277
|
+
description: string;
|
|
3278
|
+
name: string;
|
|
3279
|
+
params: {
|
|
3280
|
+
default: any;
|
|
3281
|
+
description: string;
|
|
3282
|
+
isRequired: boolean;
|
|
3283
|
+
name: string;
|
|
3284
|
+
type: string;
|
|
3285
|
+
}[];
|
|
3286
|
+
returnDescription: string;
|
|
3287
|
+
returnType: string;
|
|
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
|
+
})[];
|
|
3301
|
+
name: string;
|
|
3302
|
+
properties: any[];
|
|
3303
|
+
url: string;
|
|
3304
|
+
};
|
|
3436
3305
|
ifenum: {
|
|
3437
3306
|
implementers: {
|
|
3438
3307
|
description: string;
|
|
@@ -3574,42 +3443,13 @@ export declare const interfaces: {
|
|
|
3574
3443
|
url: string;
|
|
3575
3444
|
}[];
|
|
3576
3445
|
methods: {
|
|
3577
|
-
description: string;
|
|
3578
|
-
name: string;
|
|
3579
|
-
params: {
|
|
3580
|
-
default: any;
|
|
3581
|
-
description: string;
|
|
3582
|
-
isRequired: boolean;
|
|
3583
|
-
name: string;
|
|
3584
|
-
type: string;
|
|
3585
|
-
}[];
|
|
3586
|
-
returnDescription: string;
|
|
3587
|
-
returnType: string;
|
|
3588
|
-
}[];
|
|
3589
|
-
name: string;
|
|
3590
|
-
properties: any[];
|
|
3591
|
-
url: string;
|
|
3592
|
-
};
|
|
3593
|
-
iffontmetrics: {
|
|
3594
|
-
deprecatedDescription: string;
|
|
3595
|
-
description: string;
|
|
3596
|
-
implementers: {
|
|
3597
|
-
description: string;
|
|
3598
|
-
name: string;
|
|
3599
|
-
url: string;
|
|
3600
|
-
}[];
|
|
3601
|
-
isDeprecated: boolean;
|
|
3602
|
-
methods: {
|
|
3603
|
-
description: string;
|
|
3604
3446
|
name: string;
|
|
3605
3447
|
params: {
|
|
3606
3448
|
default: any;
|
|
3607
|
-
description: string;
|
|
3608
3449
|
isRequired: boolean;
|
|
3609
3450
|
name: string;
|
|
3610
3451
|
type: string;
|
|
3611
3452
|
}[];
|
|
3612
|
-
returnDescription: string;
|
|
3613
3453
|
returnType: string;
|
|
3614
3454
|
}[];
|
|
3615
3455
|
name: string;
|
|
@@ -3688,22 +3528,13 @@ export declare const interfaces: {
|
|
|
3688
3528
|
properties: any[];
|
|
3689
3529
|
url: string;
|
|
3690
3530
|
};
|
|
3691
|
-
|
|
3692
|
-
deprecatedDescription: string;
|
|
3693
|
-
description: string;
|
|
3531
|
+
ifhdmistatus: {
|
|
3694
3532
|
implementers: {
|
|
3695
3533
|
description: string;
|
|
3696
3534
|
name: string;
|
|
3697
3535
|
url: string;
|
|
3698
3536
|
}[];
|
|
3699
|
-
|
|
3700
|
-
methods: ({
|
|
3701
|
-
name: string;
|
|
3702
|
-
params: any[];
|
|
3703
|
-
returnType: string;
|
|
3704
|
-
description?: undefined;
|
|
3705
|
-
returnDescription?: undefined;
|
|
3706
|
-
} | {
|
|
3537
|
+
methods: {
|
|
3707
3538
|
description: string;
|
|
3708
3539
|
name: string;
|
|
3709
3540
|
params: {
|
|
@@ -3713,60 +3544,20 @@ export declare const interfaces: {
|
|
|
3713
3544
|
name: string;
|
|
3714
3545
|
type: string;
|
|
3715
3546
|
}[];
|
|
3716
|
-
returnType: string;
|
|
3717
|
-
returnDescription?: undefined;
|
|
3718
|
-
} | {
|
|
3719
|
-
description: string;
|
|
3720
|
-
name: string;
|
|
3721
|
-
params: {
|
|
3722
|
-
default: any;
|
|
3723
|
-
isRequired: boolean;
|
|
3724
|
-
name: string;
|
|
3725
|
-
type: string;
|
|
3726
|
-
}[];
|
|
3727
|
-
returnType: string;
|
|
3728
|
-
returnDescription?: undefined;
|
|
3729
|
-
} | {
|
|
3730
|
-
description: string;
|
|
3731
|
-
name: string;
|
|
3732
|
-
params: any[];
|
|
3733
3547
|
returnDescription: string;
|
|
3734
3548
|
returnType: string;
|
|
3735
|
-
}
|
|
3549
|
+
}[];
|
|
3736
3550
|
name: string;
|
|
3737
3551
|
properties: any[];
|
|
3738
3552
|
url: string;
|
|
3739
3553
|
};
|
|
3740
|
-
|
|
3554
|
+
ifhmac: {
|
|
3741
3555
|
implementers: {
|
|
3742
3556
|
description: string;
|
|
3743
3557
|
name: string;
|
|
3744
3558
|
url: string;
|
|
3745
3559
|
}[];
|
|
3746
|
-
methods: {
|
|
3747
|
-
description: string;
|
|
3748
|
-
name: string;
|
|
3749
|
-
params: {
|
|
3750
|
-
default: any;
|
|
3751
|
-
description: string;
|
|
3752
|
-
isRequired: boolean;
|
|
3753
|
-
name: string;
|
|
3754
|
-
type: string;
|
|
3755
|
-
}[];
|
|
3756
|
-
returnDescription: string;
|
|
3757
|
-
returnType: string;
|
|
3758
|
-
}[];
|
|
3759
|
-
name: string;
|
|
3760
|
-
properties: any[];
|
|
3761
|
-
url: string;
|
|
3762
|
-
};
|
|
3763
|
-
ifhmac: {
|
|
3764
|
-
implementers: {
|
|
3765
|
-
description: string;
|
|
3766
|
-
name: string;
|
|
3767
|
-
url: string;
|
|
3768
|
-
}[];
|
|
3769
|
-
methods: ({
|
|
3560
|
+
methods: ({
|
|
3770
3561
|
description: string;
|
|
3771
3562
|
name: string;
|
|
3772
3563
|
params: {
|
|
@@ -3843,15 +3634,12 @@ export declare const interfaces: {
|
|
|
3843
3634
|
properties: any[];
|
|
3844
3635
|
url: string;
|
|
3845
3636
|
};
|
|
3846
|
-
|
|
3847
|
-
deprecatedDescription: string;
|
|
3848
|
-
description: string;
|
|
3637
|
+
ifimagemetadata: {
|
|
3849
3638
|
implementers: {
|
|
3850
3639
|
description: string;
|
|
3851
3640
|
name: string;
|
|
3852
3641
|
url: string;
|
|
3853
3642
|
}[];
|
|
3854
|
-
isDeprecated: boolean;
|
|
3855
3643
|
methods: ({
|
|
3856
3644
|
description: string;
|
|
3857
3645
|
name: string;
|
|
@@ -3876,18 +3664,12 @@ export declare const interfaces: {
|
|
|
3876
3664
|
}[];
|
|
3877
3665
|
returnType: string;
|
|
3878
3666
|
returnDescription?: undefined;
|
|
3879
|
-
} | {
|
|
3880
|
-
name: string;
|
|
3881
|
-
params: any[];
|
|
3882
|
-
returnType: string;
|
|
3883
|
-
description?: undefined;
|
|
3884
|
-
returnDescription?: undefined;
|
|
3885
3667
|
})[];
|
|
3886
3668
|
name: string;
|
|
3887
3669
|
properties: any[];
|
|
3888
3670
|
url: string;
|
|
3889
3671
|
};
|
|
3890
|
-
|
|
3672
|
+
ifinput: {
|
|
3891
3673
|
implementers: {
|
|
3892
3674
|
description: string;
|
|
3893
3675
|
name: string;
|
|
@@ -3898,7 +3680,6 @@ export declare const interfaces: {
|
|
|
3898
3680
|
name: string;
|
|
3899
3681
|
params: {
|
|
3900
3682
|
default: any;
|
|
3901
|
-
description: string;
|
|
3902
3683
|
isRequired: boolean;
|
|
3903
3684
|
name: string;
|
|
3904
3685
|
type: string;
|
|
@@ -3922,7 +3703,8 @@ export declare const interfaces: {
|
|
|
3922
3703
|
properties: any[];
|
|
3923
3704
|
url: string;
|
|
3924
3705
|
};
|
|
3925
|
-
|
|
3706
|
+
ifint: {
|
|
3707
|
+
description: string;
|
|
3926
3708
|
implementers: {
|
|
3927
3709
|
description: string;
|
|
3928
3710
|
name: string;
|
|
@@ -3931,12 +3713,7 @@ export declare const interfaces: {
|
|
|
3931
3713
|
methods: ({
|
|
3932
3714
|
description: string;
|
|
3933
3715
|
name: string;
|
|
3934
|
-
params:
|
|
3935
|
-
default: any;
|
|
3936
|
-
isRequired: boolean;
|
|
3937
|
-
name: string;
|
|
3938
|
-
type: string;
|
|
3939
|
-
}[];
|
|
3716
|
+
params: any[];
|
|
3940
3717
|
returnDescription: string;
|
|
3941
3718
|
returnType: string;
|
|
3942
3719
|
} | {
|
|
@@ -3956,37 +3733,58 @@ export declare const interfaces: {
|
|
|
3956
3733
|
properties: any[];
|
|
3957
3734
|
url: string;
|
|
3958
3735
|
};
|
|
3959
|
-
|
|
3960
|
-
description: string;
|
|
3736
|
+
ifintops: {
|
|
3961
3737
|
implementers: {
|
|
3962
3738
|
description: string;
|
|
3963
3739
|
name: string;
|
|
3964
3740
|
url: string;
|
|
3965
3741
|
}[];
|
|
3966
|
-
methods:
|
|
3742
|
+
methods: {
|
|
3967
3743
|
description: string;
|
|
3968
3744
|
name: string;
|
|
3969
3745
|
params: any[];
|
|
3970
3746
|
returnDescription: string;
|
|
3971
3747
|
returnType: string;
|
|
3972
|
-
}
|
|
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: ({
|
|
3973
3760
|
description: string;
|
|
3974
3761
|
name: string;
|
|
3975
3762
|
params: {
|
|
3976
3763
|
default: any;
|
|
3977
|
-
description: string;
|
|
3978
3764
|
isRequired: boolean;
|
|
3979
3765
|
name: string;
|
|
3980
3766
|
type: string;
|
|
3981
3767
|
}[];
|
|
3982
3768
|
returnType: string;
|
|
3983
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;
|
|
3984
3782
|
})[];
|
|
3985
3783
|
name: string;
|
|
3986
3784
|
properties: any[];
|
|
3987
3785
|
url: string;
|
|
3988
3786
|
};
|
|
3989
|
-
|
|
3787
|
+
iflisttoarray: {
|
|
3990
3788
|
implementers: {
|
|
3991
3789
|
description: string;
|
|
3992
3790
|
name: string;
|
|
@@ -4003,15 +3801,13 @@ export declare const interfaces: {
|
|
|
4003
3801
|
properties: any[];
|
|
4004
3802
|
url: string;
|
|
4005
3803
|
};
|
|
4006
|
-
|
|
4007
|
-
description: string;
|
|
3804
|
+
iflocalization: {
|
|
4008
3805
|
implementers: {
|
|
4009
3806
|
description: string;
|
|
4010
3807
|
name: string;
|
|
4011
3808
|
url: string;
|
|
4012
3809
|
}[];
|
|
4013
3810
|
methods: ({
|
|
4014
|
-
description: string;
|
|
4015
3811
|
name: string;
|
|
4016
3812
|
params: {
|
|
4017
3813
|
default: any;
|
|
@@ -4020,92 +3816,84 @@ export declare const interfaces: {
|
|
|
4020
3816
|
name: string;
|
|
4021
3817
|
type: string;
|
|
4022
3818
|
}[];
|
|
4023
|
-
|
|
4024
|
-
returnDescription?: undefined;
|
|
4025
|
-
} | {
|
|
4026
|
-
name: string;
|
|
4027
|
-
params: any[];
|
|
3819
|
+
returnDescription: string;
|
|
4028
3820
|
returnType: string;
|
|
4029
3821
|
description?: undefined;
|
|
4030
|
-
returnDescription?: undefined;
|
|
4031
3822
|
} | {
|
|
4032
3823
|
description: string;
|
|
4033
|
-
name: string;
|
|
4034
|
-
params: any[];
|
|
4035
|
-
returnDescription: string;
|
|
4036
|
-
returnType: string;
|
|
4037
|
-
} | {
|
|
4038
3824
|
name: string;
|
|
4039
3825
|
params: {
|
|
4040
3826
|
default: any;
|
|
4041
|
-
description: string;
|
|
4042
3827
|
isRequired: boolean;
|
|
4043
3828
|
name: string;
|
|
4044
3829
|
type: string;
|
|
4045
3830
|
}[];
|
|
4046
3831
|
returnDescription: string;
|
|
4047
3832
|
returnType: string;
|
|
4048
|
-
description?: undefined;
|
|
4049
3833
|
})[];
|
|
4050
3834
|
name: string;
|
|
4051
3835
|
properties: any[];
|
|
4052
3836
|
url: string;
|
|
4053
3837
|
};
|
|
4054
|
-
|
|
3838
|
+
iflongint: {
|
|
4055
3839
|
implementers: {
|
|
4056
3840
|
description: string;
|
|
4057
3841
|
name: string;
|
|
4058
3842
|
url: string;
|
|
4059
3843
|
}[];
|
|
4060
3844
|
methods: ({
|
|
3845
|
+
description: string;
|
|
3846
|
+
name: string;
|
|
3847
|
+
params: any[];
|
|
3848
|
+
returnDescription: string;
|
|
3849
|
+
returnType: string;
|
|
3850
|
+
} | {
|
|
4061
3851
|
description: string;
|
|
4062
3852
|
name: string;
|
|
4063
3853
|
params: {
|
|
4064
3854
|
default: any;
|
|
3855
|
+
description: string;
|
|
4065
3856
|
isRequired: boolean;
|
|
4066
3857
|
name: string;
|
|
4067
3858
|
type: string;
|
|
4068
3859
|
}[];
|
|
4069
3860
|
returnType: string;
|
|
4070
3861
|
returnDescription?: undefined;
|
|
4071
|
-
} | {
|
|
4072
|
-
name: string;
|
|
4073
|
-
params: any[];
|
|
4074
|
-
returnType: string;
|
|
4075
|
-
description?: undefined;
|
|
4076
|
-
returnDescription?: undefined;
|
|
4077
|
-
} | {
|
|
4078
|
-
description: string;
|
|
4079
|
-
name: string;
|
|
4080
|
-
params: any[];
|
|
4081
|
-
returnDescription: string;
|
|
4082
|
-
returnType: string;
|
|
4083
3862
|
})[];
|
|
4084
3863
|
name: string;
|
|
4085
3864
|
properties: any[];
|
|
4086
3865
|
url: string;
|
|
4087
3866
|
};
|
|
4088
|
-
|
|
4089
|
-
deprecatedDescription: string;
|
|
4090
|
-
description: string;
|
|
3867
|
+
ifmessageport: {
|
|
4091
3868
|
implementers: {
|
|
4092
3869
|
description: string;
|
|
4093
3870
|
name: string;
|
|
4094
3871
|
url: string;
|
|
4095
3872
|
}[];
|
|
4096
|
-
|
|
4097
|
-
methods: ({
|
|
3873
|
+
methods: {
|
|
4098
3874
|
description: string;
|
|
4099
3875
|
name: string;
|
|
4100
3876
|
params: {
|
|
4101
3877
|
default: any;
|
|
3878
|
+
description: string;
|
|
4102
3879
|
isRequired: boolean;
|
|
4103
3880
|
name: string;
|
|
4104
3881
|
type: string;
|
|
4105
3882
|
}[];
|
|
3883
|
+
returnDescription: string;
|
|
4106
3884
|
returnType: string;
|
|
4107
|
-
|
|
4108
|
-
|
|
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: ({
|
|
4109
3897
|
description: string;
|
|
4110
3898
|
name: string;
|
|
4111
3899
|
params: {
|
|
@@ -4115,31 +3903,27 @@ export declare const interfaces: {
|
|
|
4115
3903
|
name: string;
|
|
4116
3904
|
type: string;
|
|
4117
3905
|
}[];
|
|
3906
|
+
returnDescription: string;
|
|
4118
3907
|
returnType: string;
|
|
4119
|
-
returnDescription?: undefined;
|
|
4120
3908
|
} | {
|
|
3909
|
+
description: string;
|
|
4121
3910
|
name: string;
|
|
4122
3911
|
params: {
|
|
4123
3912
|
default: any;
|
|
3913
|
+
description: string;
|
|
4124
3914
|
isRequired: boolean;
|
|
4125
3915
|
name: string;
|
|
4126
3916
|
type: string;
|
|
4127
3917
|
}[];
|
|
4128
3918
|
returnType: string;
|
|
4129
|
-
description?: undefined;
|
|
4130
3919
|
returnDescription?: undefined;
|
|
4131
|
-
} | {
|
|
4132
|
-
description: string;
|
|
4133
|
-
name: string;
|
|
4134
|
-
params: any[];
|
|
4135
|
-
returnDescription: string;
|
|
4136
|
-
returnType: string;
|
|
4137
3920
|
})[];
|
|
4138
3921
|
name: string;
|
|
4139
3922
|
properties: any[];
|
|
4140
3923
|
url: string;
|
|
4141
3924
|
};
|
|
4142
|
-
|
|
3925
|
+
ifpath: {
|
|
3926
|
+
description: string;
|
|
4143
3927
|
implementers: {
|
|
4144
3928
|
description: string;
|
|
4145
3929
|
name: string;
|
|
@@ -4148,7 +3932,13 @@ export declare const interfaces: {
|
|
|
4148
3932
|
methods: {
|
|
4149
3933
|
description: string;
|
|
4150
3934
|
name: string;
|
|
4151
|
-
params:
|
|
3935
|
+
params: {
|
|
3936
|
+
default: any;
|
|
3937
|
+
description: string;
|
|
3938
|
+
isRequired: boolean;
|
|
3939
|
+
name: string;
|
|
3940
|
+
type: string;
|
|
3941
|
+
}[];
|
|
4152
3942
|
returnDescription: string;
|
|
4153
3943
|
returnType: string;
|
|
4154
3944
|
}[];
|
|
@@ -4156,13 +3946,14 @@ export declare const interfaces: {
|
|
|
4156
3946
|
properties: any[];
|
|
4157
3947
|
url: string;
|
|
4158
3948
|
};
|
|
4159
|
-
|
|
3949
|
+
ifprogramguide: {
|
|
4160
3950
|
implementers: {
|
|
4161
3951
|
description: string;
|
|
4162
3952
|
name: string;
|
|
4163
3953
|
url: string;
|
|
4164
3954
|
}[];
|
|
4165
3955
|
methods: ({
|
|
3956
|
+
description: string;
|
|
4166
3957
|
name: string;
|
|
4167
3958
|
params: {
|
|
4168
3959
|
default: any;
|
|
@@ -4171,14 +3962,14 @@ export declare const interfaces: {
|
|
|
4171
3962
|
name: string;
|
|
4172
3963
|
type: string;
|
|
4173
3964
|
}[];
|
|
4174
|
-
returnDescription: string;
|
|
4175
3965
|
returnType: string;
|
|
4176
|
-
|
|
3966
|
+
returnDescription?: undefined;
|
|
4177
3967
|
} | {
|
|
4178
3968
|
description: string;
|
|
4179
3969
|
name: string;
|
|
4180
3970
|
params: {
|
|
4181
3971
|
default: any;
|
|
3972
|
+
description: string;
|
|
4182
3973
|
isRequired: boolean;
|
|
4183
3974
|
name: string;
|
|
4184
3975
|
type: string;
|
|
@@ -4190,19 +3981,14 @@ export declare const interfaces: {
|
|
|
4190
3981
|
properties: any[];
|
|
4191
3982
|
url: string;
|
|
4192
3983
|
};
|
|
4193
|
-
|
|
3984
|
+
ifregex: {
|
|
3985
|
+
description: string;
|
|
4194
3986
|
implementers: {
|
|
4195
3987
|
description: string;
|
|
4196
3988
|
name: string;
|
|
4197
3989
|
url: string;
|
|
4198
3990
|
}[];
|
|
4199
|
-
methods:
|
|
4200
|
-
description: string;
|
|
4201
|
-
name: string;
|
|
4202
|
-
params: any[];
|
|
4203
|
-
returnDescription: string;
|
|
4204
|
-
returnType: string;
|
|
4205
|
-
} | {
|
|
3991
|
+
methods: {
|
|
4206
3992
|
description: string;
|
|
4207
3993
|
name: string;
|
|
4208
3994
|
params: {
|
|
@@ -4212,15 +3998,14 @@ export declare const interfaces: {
|
|
|
4212
3998
|
name: string;
|
|
4213
3999
|
type: string;
|
|
4214
4000
|
}[];
|
|
4001
|
+
returnDescription: string;
|
|
4215
4002
|
returnType: string;
|
|
4216
|
-
|
|
4217
|
-
})[];
|
|
4003
|
+
}[];
|
|
4218
4004
|
name: string;
|
|
4219
4005
|
properties: any[];
|
|
4220
4006
|
url: string;
|
|
4221
4007
|
};
|
|
4222
|
-
|
|
4223
|
-
description: string;
|
|
4008
|
+
ifregion: {
|
|
4224
4009
|
implementers: {
|
|
4225
4010
|
description: string;
|
|
4226
4011
|
name: string;
|
|
@@ -4229,43 +4014,21 @@ export declare const interfaces: {
|
|
|
4229
4014
|
methods: ({
|
|
4230
4015
|
description: string;
|
|
4231
4016
|
name: string;
|
|
4232
|
-
params:
|
|
4233
|
-
default: any;
|
|
4234
|
-
description: string;
|
|
4235
|
-
isRequired: boolean;
|
|
4236
|
-
name: string;
|
|
4237
|
-
type: string;
|
|
4238
|
-
}[];
|
|
4239
|
-
returnDescription: string;
|
|
4240
|
-
returnType: string;
|
|
4241
|
-
} | {
|
|
4242
|
-
description: string;
|
|
4243
|
-
name: string;
|
|
4244
|
-
params: {
|
|
4245
|
-
default: any;
|
|
4246
|
-
isRequired: boolean;
|
|
4247
|
-
name: string;
|
|
4248
|
-
type: string;
|
|
4249
|
-
}[];
|
|
4017
|
+
params: any[];
|
|
4250
4018
|
returnDescription: string;
|
|
4251
4019
|
returnType: string;
|
|
4252
4020
|
} | {
|
|
4253
|
-
description: string;
|
|
4254
4021
|
name: string;
|
|
4255
|
-
params:
|
|
4256
|
-
default: any;
|
|
4257
|
-
description: string;
|
|
4258
|
-
isRequired: boolean;
|
|
4259
|
-
name: string;
|
|
4260
|
-
type: string;
|
|
4261
|
-
}[];
|
|
4022
|
+
params: any[];
|
|
4262
4023
|
returnType: string;
|
|
4024
|
+
description?: undefined;
|
|
4263
4025
|
returnDescription?: undefined;
|
|
4264
4026
|
} | {
|
|
4265
4027
|
description: string;
|
|
4266
4028
|
name: string;
|
|
4267
4029
|
params: {
|
|
4268
4030
|
default: any;
|
|
4031
|
+
description: string;
|
|
4269
4032
|
isRequired: boolean;
|
|
4270
4033
|
name: string;
|
|
4271
4034
|
type: string;
|
|
@@ -4277,7 +4040,7 @@ export declare const interfaces: {
|
|
|
4277
4040
|
properties: any[];
|
|
4278
4041
|
url: string;
|
|
4279
4042
|
};
|
|
4280
|
-
|
|
4043
|
+
ifregistry: {
|
|
4281
4044
|
implementers: {
|
|
4282
4045
|
description: string;
|
|
4283
4046
|
name: string;
|
|
@@ -4300,14 +4063,13 @@ export declare const interfaces: {
|
|
|
4300
4063
|
properties: any[];
|
|
4301
4064
|
url: string;
|
|
4302
4065
|
};
|
|
4303
|
-
|
|
4066
|
+
ifregistrysection: {
|
|
4304
4067
|
implementers: {
|
|
4305
4068
|
description: string;
|
|
4306
4069
|
name: string;
|
|
4307
4070
|
url: string;
|
|
4308
4071
|
}[];
|
|
4309
4072
|
methods: ({
|
|
4310
|
-
description: string;
|
|
4311
4073
|
name: string;
|
|
4312
4074
|
params: {
|
|
4313
4075
|
default: any;
|
|
@@ -4318,6 +4080,7 @@ export declare const interfaces: {
|
|
|
4318
4080
|
}[];
|
|
4319
4081
|
returnDescription: string;
|
|
4320
4082
|
returnType: string;
|
|
4083
|
+
description?: undefined;
|
|
4321
4084
|
} | {
|
|
4322
4085
|
description: string;
|
|
4323
4086
|
name: string;
|
|
@@ -4328,22 +4091,31 @@ export declare const interfaces: {
|
|
|
4328
4091
|
name: string;
|
|
4329
4092
|
type: string;
|
|
4330
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;
|
|
4331
4106
|
returnType: string;
|
|
4332
|
-
returnDescription?: undefined;
|
|
4333
4107
|
})[];
|
|
4334
4108
|
name: string;
|
|
4335
4109
|
properties: any[];
|
|
4336
4110
|
url: string;
|
|
4337
4111
|
};
|
|
4338
|
-
|
|
4339
|
-
description: string;
|
|
4112
|
+
ifremoteinfo: {
|
|
4340
4113
|
implementers: {
|
|
4341
4114
|
description: string;
|
|
4342
4115
|
name: string;
|
|
4343
4116
|
url: string;
|
|
4344
4117
|
}[];
|
|
4345
4118
|
methods: ({
|
|
4346
|
-
description: string;
|
|
4347
4119
|
name: string;
|
|
4348
4120
|
params: {
|
|
4349
4121
|
default: any;
|
|
@@ -4352,12 +4124,19 @@ export declare const interfaces: {
|
|
|
4352
4124
|
name: string;
|
|
4353
4125
|
type: string;
|
|
4354
4126
|
}[];
|
|
4127
|
+
returnDescription: string;
|
|
4355
4128
|
returnType: string;
|
|
4356
|
-
|
|
4129
|
+
description?: undefined;
|
|
4357
4130
|
} | {
|
|
4358
4131
|
description: string;
|
|
4359
4132
|
name: string;
|
|
4360
|
-
params:
|
|
4133
|
+
params: {
|
|
4134
|
+
default: any;
|
|
4135
|
+
description: string;
|
|
4136
|
+
isRequired: boolean;
|
|
4137
|
+
name: string;
|
|
4138
|
+
type: string;
|
|
4139
|
+
}[];
|
|
4361
4140
|
returnDescription: string;
|
|
4362
4141
|
returnType: string;
|
|
4363
4142
|
})[];
|
|
@@ -4365,15 +4144,13 @@ export declare const interfaces: {
|
|
|
4365
4144
|
properties: any[];
|
|
4366
4145
|
url: string;
|
|
4367
4146
|
};
|
|
4368
|
-
|
|
4369
|
-
description: string;
|
|
4147
|
+
ifrsa: {
|
|
4370
4148
|
implementers: {
|
|
4371
4149
|
description: string;
|
|
4372
4150
|
name: string;
|
|
4373
4151
|
url: string;
|
|
4374
4152
|
}[];
|
|
4375
4153
|
methods: ({
|
|
4376
|
-
description: string;
|
|
4377
4154
|
name: string;
|
|
4378
4155
|
params: {
|
|
4379
4156
|
default: any;
|
|
@@ -4384,11 +4161,13 @@ export declare const interfaces: {
|
|
|
4384
4161
|
}[];
|
|
4385
4162
|
returnDescription: string;
|
|
4386
4163
|
returnType: string;
|
|
4164
|
+
description?: undefined;
|
|
4387
4165
|
} | {
|
|
4388
4166
|
description: string;
|
|
4389
4167
|
name: string;
|
|
4390
4168
|
params: {
|
|
4391
4169
|
default: any;
|
|
4170
|
+
description: string;
|
|
4392
4171
|
isRequired: boolean;
|
|
4393
4172
|
name: string;
|
|
4394
4173
|
type: string;
|
|
@@ -4396,7 +4175,6 @@ export declare const interfaces: {
|
|
|
4396
4175
|
returnType: string;
|
|
4397
4176
|
returnDescription?: undefined;
|
|
4398
4177
|
} | {
|
|
4399
|
-
description: string;
|
|
4400
4178
|
name: string;
|
|
4401
4179
|
params: {
|
|
4402
4180
|
default: any;
|
|
@@ -4407,23 +4185,25 @@ export declare const interfaces: {
|
|
|
4407
4185
|
}[];
|
|
4408
4186
|
returnType: string;
|
|
4409
4187
|
returnDescription?: undefined;
|
|
4188
|
+
description?: undefined;
|
|
4410
4189
|
} | {
|
|
4190
|
+
description: string;
|
|
4411
4191
|
name: string;
|
|
4412
4192
|
params: {
|
|
4413
4193
|
default: any;
|
|
4194
|
+
description: string;
|
|
4414
4195
|
isRequired: boolean;
|
|
4415
4196
|
name: string;
|
|
4416
4197
|
type: string;
|
|
4417
4198
|
}[];
|
|
4199
|
+
returnDescription: string;
|
|
4418
4200
|
returnType: string;
|
|
4419
|
-
description?: undefined;
|
|
4420
|
-
returnDescription?: undefined;
|
|
4421
4201
|
})[];
|
|
4422
4202
|
name: string;
|
|
4423
4203
|
properties: any[];
|
|
4424
4204
|
url: string;
|
|
4425
4205
|
};
|
|
4426
|
-
|
|
4206
|
+
ifscreen: {
|
|
4427
4207
|
description: string;
|
|
4428
4208
|
implementers: {
|
|
4429
4209
|
description: string;
|
|
@@ -4433,28 +4213,20 @@ export declare const interfaces: {
|
|
|
4433
4213
|
methods: {
|
|
4434
4214
|
description: string;
|
|
4435
4215
|
name: string;
|
|
4436
|
-
params:
|
|
4437
|
-
default: any;
|
|
4438
|
-
description: string;
|
|
4439
|
-
isRequired: boolean;
|
|
4440
|
-
name: string;
|
|
4441
|
-
type: string;
|
|
4442
|
-
}[];
|
|
4443
|
-
returnDescription: string;
|
|
4216
|
+
params: any[];
|
|
4444
4217
|
returnType: string;
|
|
4445
4218
|
}[];
|
|
4446
4219
|
name: string;
|
|
4447
4220
|
properties: any[];
|
|
4448
4221
|
url: string;
|
|
4449
4222
|
};
|
|
4450
|
-
|
|
4451
|
-
description: string;
|
|
4223
|
+
ifsetmessageport: {
|
|
4452
4224
|
implementers: {
|
|
4453
4225
|
description: string;
|
|
4454
4226
|
name: string;
|
|
4455
4227
|
url: string;
|
|
4456
4228
|
}[];
|
|
4457
|
-
methods:
|
|
4229
|
+
methods: {
|
|
4458
4230
|
description: string;
|
|
4459
4231
|
name: string;
|
|
4460
4232
|
params: {
|
|
@@ -4465,49 +4237,43 @@ export declare const interfaces: {
|
|
|
4465
4237
|
type: string;
|
|
4466
4238
|
}[];
|
|
4467
4239
|
returnType: string;
|
|
4468
|
-
|
|
4469
|
-
} | {
|
|
4470
|
-
name: string;
|
|
4471
|
-
params: any[];
|
|
4472
|
-
returnType: string;
|
|
4473
|
-
description?: undefined;
|
|
4474
|
-
returnDescription?: undefined;
|
|
4475
|
-
} | {
|
|
4476
|
-
description: string;
|
|
4477
|
-
name: string;
|
|
4478
|
-
params: any[];
|
|
4479
|
-
returnDescription: string;
|
|
4480
|
-
returnType: string;
|
|
4481
|
-
})[];
|
|
4240
|
+
}[];
|
|
4482
4241
|
name: string;
|
|
4483
4242
|
properties: any[];
|
|
4484
4243
|
url: string;
|
|
4485
4244
|
};
|
|
4486
|
-
|
|
4245
|
+
ifsgnodeboundingrect: {
|
|
4487
4246
|
description: string;
|
|
4488
4247
|
implementers: {
|
|
4489
4248
|
description: string;
|
|
4490
4249
|
name: string;
|
|
4491
4250
|
url: string;
|
|
4492
4251
|
}[];
|
|
4493
|
-
methods:
|
|
4494
|
-
description: string;
|
|
4495
|
-
name: string;
|
|
4496
|
-
params: any[];
|
|
4497
|
-
returnDescription: string;
|
|
4498
|
-
returnType: string;
|
|
4499
|
-
} | {
|
|
4252
|
+
methods: {
|
|
4500
4253
|
description: string;
|
|
4501
4254
|
name: string;
|
|
4502
4255
|
params: {
|
|
4503
4256
|
default: any;
|
|
4257
|
+
description: string;
|
|
4504
4258
|
isRequired: boolean;
|
|
4505
4259
|
name: string;
|
|
4506
4260
|
type: string;
|
|
4507
4261
|
}[];
|
|
4262
|
+
returnDescription: string;
|
|
4508
4263
|
returnType: string;
|
|
4509
|
-
|
|
4510
|
-
|
|
4264
|
+
}[];
|
|
4265
|
+
name: string;
|
|
4266
|
+
properties: any[];
|
|
4267
|
+
url: string;
|
|
4268
|
+
};
|
|
4269
|
+
ifsgnodechildren: {
|
|
4270
|
+
description: string;
|
|
4271
|
+
implementers: {
|
|
4272
|
+
description: string;
|
|
4273
|
+
name: string;
|
|
4274
|
+
url: string;
|
|
4275
|
+
}[];
|
|
4276
|
+
methods: ({
|
|
4511
4277
|
description: string;
|
|
4512
4278
|
name: string;
|
|
4513
4279
|
params: {
|
|
@@ -4517,9 +4283,10 @@ export declare const interfaces: {
|
|
|
4517
4283
|
name: string;
|
|
4518
4284
|
type: string;
|
|
4519
4285
|
}[];
|
|
4286
|
+
returnDescription: string;
|
|
4520
4287
|
returnType: string;
|
|
4521
|
-
returnDescription?: undefined;
|
|
4522
4288
|
} | {
|
|
4289
|
+
description: string;
|
|
4523
4290
|
name: string;
|
|
4524
4291
|
params: {
|
|
4525
4292
|
default: any;
|
|
@@ -4529,31 +4296,30 @@ export declare const interfaces: {
|
|
|
4529
4296
|
type: string;
|
|
4530
4297
|
}[];
|
|
4531
4298
|
returnType: string;
|
|
4532
|
-
description?: undefined;
|
|
4533
4299
|
returnDescription?: undefined;
|
|
4534
4300
|
})[];
|
|
4535
4301
|
name: string;
|
|
4536
4302
|
properties: any[];
|
|
4537
4303
|
url: string;
|
|
4538
4304
|
};
|
|
4539
|
-
|
|
4305
|
+
ifsgnodedict: {
|
|
4306
|
+
description: string;
|
|
4540
4307
|
implementers: {
|
|
4541
4308
|
description: string;
|
|
4542
4309
|
name: string;
|
|
4543
4310
|
url: string;
|
|
4544
4311
|
}[];
|
|
4545
4312
|
methods: ({
|
|
4546
|
-
description: string;
|
|
4547
4313
|
name: string;
|
|
4548
4314
|
params: {
|
|
4549
4315
|
default: any;
|
|
4550
|
-
description: string;
|
|
4551
4316
|
isRequired: boolean;
|
|
4552
4317
|
name: string;
|
|
4553
4318
|
type: string;
|
|
4554
4319
|
}[];
|
|
4320
|
+
returnDescription: string;
|
|
4555
4321
|
returnType: string;
|
|
4556
|
-
|
|
4322
|
+
description?: undefined;
|
|
4557
4323
|
} | {
|
|
4558
4324
|
description: string;
|
|
4559
4325
|
name: string;
|
|
@@ -4566,36 +4332,24 @@ export declare const interfaces: {
|
|
|
4566
4332
|
}[];
|
|
4567
4333
|
returnDescription: string;
|
|
4568
4334
|
returnType: string;
|
|
4569
|
-
}
|
|
4570
|
-
name: string;
|
|
4571
|
-
properties: any[];
|
|
4572
|
-
url: string;
|
|
4573
|
-
};
|
|
4574
|
-
ifregex: {
|
|
4575
|
-
description: string;
|
|
4576
|
-
implementers: {
|
|
4577
|
-
description: string;
|
|
4578
|
-
name: string;
|
|
4579
|
-
url: string;
|
|
4580
|
-
}[];
|
|
4581
|
-
methods: {
|
|
4335
|
+
} | {
|
|
4582
4336
|
description: string;
|
|
4583
4337
|
name: string;
|
|
4584
4338
|
params: {
|
|
4585
4339
|
default: any;
|
|
4586
|
-
description: string;
|
|
4587
4340
|
isRequired: boolean;
|
|
4588
4341
|
name: string;
|
|
4589
4342
|
type: string;
|
|
4590
4343
|
}[];
|
|
4591
4344
|
returnDescription: string;
|
|
4592
4345
|
returnType: string;
|
|
4593
|
-
}[];
|
|
4346
|
+
})[];
|
|
4594
4347
|
name: string;
|
|
4595
4348
|
properties: any[];
|
|
4596
4349
|
url: string;
|
|
4597
4350
|
};
|
|
4598
|
-
|
|
4351
|
+
ifsgnodefield: {
|
|
4352
|
+
description: string;
|
|
4599
4353
|
implementers: {
|
|
4600
4354
|
description: string;
|
|
4601
4355
|
name: string;
|
|
@@ -4604,33 +4358,33 @@ export declare const interfaces: {
|
|
|
4604
4358
|
methods: ({
|
|
4605
4359
|
description: string;
|
|
4606
4360
|
name: string;
|
|
4607
|
-
params:
|
|
4361
|
+
params: {
|
|
4362
|
+
default: any;
|
|
4363
|
+
description: string;
|
|
4364
|
+
isRequired: boolean;
|
|
4365
|
+
name: string;
|
|
4366
|
+
type: string;
|
|
4367
|
+
}[];
|
|
4608
4368
|
returnDescription: string;
|
|
4609
4369
|
returnType: string;
|
|
4610
|
-
} | {
|
|
4611
|
-
name: string;
|
|
4612
|
-
params: any[];
|
|
4613
|
-
returnType: string;
|
|
4614
|
-
description?: undefined;
|
|
4615
|
-
returnDescription?: undefined;
|
|
4616
4370
|
} | {
|
|
4617
4371
|
description: string;
|
|
4618
4372
|
name: string;
|
|
4619
4373
|
params: {
|
|
4620
4374
|
default: any;
|
|
4621
|
-
description: string;
|
|
4622
4375
|
isRequired: boolean;
|
|
4623
4376
|
name: string;
|
|
4624
4377
|
type: string;
|
|
4625
4378
|
}[];
|
|
4379
|
+
returnDescription: string;
|
|
4626
4380
|
returnType: string;
|
|
4627
|
-
returnDescription?: undefined;
|
|
4628
4381
|
})[];
|
|
4629
4382
|
name: string;
|
|
4630
4383
|
properties: any[];
|
|
4631
4384
|
url: string;
|
|
4632
4385
|
};
|
|
4633
|
-
|
|
4386
|
+
ifsgnodefocus: {
|
|
4387
|
+
description: string;
|
|
4634
4388
|
implementers: {
|
|
4635
4389
|
description: string;
|
|
4636
4390
|
name: string;
|
|
@@ -4653,59 +4407,44 @@ export declare const interfaces: {
|
|
|
4653
4407
|
properties: any[];
|
|
4654
4408
|
url: string;
|
|
4655
4409
|
};
|
|
4656
|
-
|
|
4410
|
+
ifsgnodehttpagentaccess: {
|
|
4411
|
+
description: string;
|
|
4657
4412
|
implementers: {
|
|
4658
4413
|
description: string;
|
|
4659
4414
|
name: string;
|
|
4660
4415
|
url: string;
|
|
4661
4416
|
}[];
|
|
4662
4417
|
methods: ({
|
|
4663
|
-
name: string;
|
|
4664
|
-
params: {
|
|
4665
|
-
default: any;
|
|
4666
|
-
description: string;
|
|
4667
|
-
isRequired: boolean;
|
|
4668
|
-
name: string;
|
|
4669
|
-
type: string;
|
|
4670
|
-
}[];
|
|
4671
|
-
returnDescription: string;
|
|
4672
|
-
returnType: string;
|
|
4673
|
-
description?: undefined;
|
|
4674
|
-
} | {
|
|
4675
4418
|
description: string;
|
|
4676
4419
|
name: string;
|
|
4677
|
-
params:
|
|
4678
|
-
default: any;
|
|
4679
|
-
description: string;
|
|
4680
|
-
isRequired: boolean;
|
|
4681
|
-
name: string;
|
|
4682
|
-
type: string;
|
|
4683
|
-
}[];
|
|
4420
|
+
params: any[];
|
|
4684
4421
|
returnDescription: string;
|
|
4685
4422
|
returnType: string;
|
|
4686
4423
|
} | {
|
|
4687
|
-
description: string;
|
|
4688
4424
|
name: string;
|
|
4689
4425
|
params: {
|
|
4690
4426
|
default: any;
|
|
4427
|
+
description: string;
|
|
4691
4428
|
isRequired: boolean;
|
|
4692
4429
|
name: string;
|
|
4693
4430
|
type: string;
|
|
4694
4431
|
}[];
|
|
4695
4432
|
returnDescription: string;
|
|
4696
4433
|
returnType: string;
|
|
4434
|
+
description?: undefined;
|
|
4697
4435
|
})[];
|
|
4698
4436
|
name: string;
|
|
4699
4437
|
properties: any[];
|
|
4700
4438
|
url: string;
|
|
4701
4439
|
};
|
|
4702
|
-
|
|
4440
|
+
ifsgscreen: {
|
|
4703
4441
|
implementers: {
|
|
4704
4442
|
description: string;
|
|
4705
4443
|
name: string;
|
|
4706
4444
|
url: string;
|
|
4707
4445
|
}[];
|
|
4708
4446
|
methods: ({
|
|
4447
|
+
description: string;
|
|
4709
4448
|
name: string;
|
|
4710
4449
|
params: {
|
|
4711
4450
|
default: any;
|
|
@@ -4716,7 +4455,6 @@ export declare const interfaces: {
|
|
|
4716
4455
|
}[];
|
|
4717
4456
|
returnDescription: string;
|
|
4718
4457
|
returnType: string;
|
|
4719
|
-
description?: undefined;
|
|
4720
4458
|
} | {
|
|
4721
4459
|
description: string;
|
|
4722
4460
|
name: string;
|
|
@@ -4729,7 +4467,25 @@ export declare const interfaces: {
|
|
|
4729
4467
|
}[];
|
|
4730
4468
|
returnType: string;
|
|
4731
4469
|
returnDescription?: undefined;
|
|
4470
|
+
})[];
|
|
4471
|
+
name: string;
|
|
4472
|
+
properties: any[];
|
|
4473
|
+
url: string;
|
|
4474
|
+
};
|
|
4475
|
+
ifsocket: {
|
|
4476
|
+
implementers: {
|
|
4477
|
+
description: string;
|
|
4478
|
+
name: string;
|
|
4479
|
+
url: string;
|
|
4480
|
+
}[];
|
|
4481
|
+
methods: ({
|
|
4482
|
+
name: string;
|
|
4483
|
+
params: any[];
|
|
4484
|
+
returnType: string;
|
|
4485
|
+
description?: undefined;
|
|
4486
|
+
returnDescription?: undefined;
|
|
4732
4487
|
} | {
|
|
4488
|
+
description: string;
|
|
4733
4489
|
name: string;
|
|
4734
4490
|
params: {
|
|
4735
4491
|
default: any;
|
|
@@ -4738,11 +4494,9 @@ export declare const interfaces: {
|
|
|
4738
4494
|
name: string;
|
|
4739
4495
|
type: string;
|
|
4740
4496
|
}[];
|
|
4497
|
+
returnDescription: string;
|
|
4741
4498
|
returnType: string;
|
|
4742
|
-
returnDescription?: undefined;
|
|
4743
|
-
description?: undefined;
|
|
4744
4499
|
} | {
|
|
4745
|
-
description: string;
|
|
4746
4500
|
name: string;
|
|
4747
4501
|
params: {
|
|
4748
4502
|
default: any;
|
|
@@ -4753,29 +4507,42 @@ export declare const interfaces: {
|
|
|
4753
4507
|
}[];
|
|
4754
4508
|
returnDescription: string;
|
|
4755
4509
|
returnType: string;
|
|
4510
|
+
description?: undefined;
|
|
4756
4511
|
})[];
|
|
4757
4512
|
name: string;
|
|
4758
4513
|
properties: any[];
|
|
4759
4514
|
url: string;
|
|
4760
4515
|
};
|
|
4761
|
-
|
|
4762
|
-
description: string;
|
|
4516
|
+
ifsocketaddress: {
|
|
4763
4517
|
implementers: {
|
|
4764
4518
|
description: string;
|
|
4765
4519
|
name: string;
|
|
4766
4520
|
url: string;
|
|
4767
4521
|
}[];
|
|
4768
|
-
methods: {
|
|
4769
|
-
description: string;
|
|
4522
|
+
methods: ({
|
|
4770
4523
|
name: string;
|
|
4771
4524
|
params: any[];
|
|
4525
|
+
returnDescription: string;
|
|
4772
4526
|
returnType: string;
|
|
4773
|
-
|
|
4527
|
+
description?: undefined;
|
|
4528
|
+
} | {
|
|
4529
|
+
description: string;
|
|
4530
|
+
name: string;
|
|
4531
|
+
params: {
|
|
4532
|
+
default: any;
|
|
4533
|
+
description: string;
|
|
4534
|
+
isRequired: boolean;
|
|
4535
|
+
name: string;
|
|
4536
|
+
type: string;
|
|
4537
|
+
}[];
|
|
4538
|
+
returnDescription: string;
|
|
4539
|
+
returnType: string;
|
|
4540
|
+
})[];
|
|
4774
4541
|
name: string;
|
|
4775
4542
|
properties: any[];
|
|
4776
4543
|
url: string;
|
|
4777
4544
|
};
|
|
4778
|
-
|
|
4545
|
+
ifsocketasync: {
|
|
4779
4546
|
description: string;
|
|
4780
4547
|
implementers: {
|
|
4781
4548
|
description: string;
|
|
@@ -4805,13 +4572,13 @@ export declare const interfaces: {
|
|
|
4805
4572
|
properties: any[];
|
|
4806
4573
|
url: string;
|
|
4807
4574
|
};
|
|
4808
|
-
|
|
4575
|
+
ifsocketcastoption: {
|
|
4809
4576
|
implementers: {
|
|
4810
4577
|
description: string;
|
|
4811
4578
|
name: string;
|
|
4812
4579
|
url: string;
|
|
4813
4580
|
}[];
|
|
4814
|
-
methods:
|
|
4581
|
+
methods: {
|
|
4815
4582
|
description: string;
|
|
4816
4583
|
name: string;
|
|
4817
4584
|
params: {
|
|
@@ -4821,26 +4588,26 @@ export declare const interfaces: {
|
|
|
4821
4588
|
name: string;
|
|
4822
4589
|
type: string;
|
|
4823
4590
|
}[];
|
|
4824
|
-
returnType: string;
|
|
4825
|
-
returnDescription?: undefined;
|
|
4826
|
-
} | {
|
|
4827
|
-
description: string;
|
|
4828
|
-
name: string;
|
|
4829
|
-
params: any[];
|
|
4830
4591
|
returnDescription: string;
|
|
4831
4592
|
returnType: string;
|
|
4832
|
-
}
|
|
4593
|
+
}[];
|
|
4833
4594
|
name: string;
|
|
4834
4595
|
properties: any[];
|
|
4835
4596
|
url: string;
|
|
4836
4597
|
};
|
|
4837
|
-
|
|
4598
|
+
ifsocketconnection: {
|
|
4838
4599
|
implementers: {
|
|
4839
4600
|
description: string;
|
|
4840
4601
|
name: string;
|
|
4841
4602
|
url: string;
|
|
4842
4603
|
}[];
|
|
4843
|
-
methods: {
|
|
4604
|
+
methods: ({
|
|
4605
|
+
name: string;
|
|
4606
|
+
params: any[];
|
|
4607
|
+
returnDescription: string;
|
|
4608
|
+
returnType: string;
|
|
4609
|
+
description?: undefined;
|
|
4610
|
+
} | {
|
|
4844
4611
|
description: string;
|
|
4845
4612
|
name: string;
|
|
4846
4613
|
params: {
|
|
@@ -4850,14 +4617,14 @@ export declare const interfaces: {
|
|
|
4850
4617
|
name: string;
|
|
4851
4618
|
type: string;
|
|
4852
4619
|
}[];
|
|
4620
|
+
returnDescription: string;
|
|
4853
4621
|
returnType: string;
|
|
4854
|
-
}[];
|
|
4622
|
+
})[];
|
|
4855
4623
|
name: string;
|
|
4856
4624
|
properties: any[];
|
|
4857
4625
|
url: string;
|
|
4858
4626
|
};
|
|
4859
|
-
|
|
4860
|
-
description: string;
|
|
4627
|
+
ifsocketconnectionoption: {
|
|
4861
4628
|
implementers: {
|
|
4862
4629
|
description: string;
|
|
4863
4630
|
name: string;
|
|
@@ -4880,55 +4647,30 @@ export declare const interfaces: {
|
|
|
4880
4647
|
properties: any[];
|
|
4881
4648
|
url: string;
|
|
4882
4649
|
};
|
|
4883
|
-
|
|
4884
|
-
description: string;
|
|
4650
|
+
ifsocketconnectionstatus: {
|
|
4885
4651
|
implementers: {
|
|
4886
4652
|
description: string;
|
|
4887
4653
|
name: string;
|
|
4888
4654
|
url: string;
|
|
4889
4655
|
}[];
|
|
4890
|
-
methods:
|
|
4891
|
-
description: string;
|
|
4892
|
-
name: string;
|
|
4893
|
-
params: {
|
|
4894
|
-
default: any;
|
|
4895
|
-
description: string;
|
|
4896
|
-
isRequired: boolean;
|
|
4897
|
-
name: string;
|
|
4898
|
-
type: string;
|
|
4899
|
-
}[];
|
|
4900
|
-
returnDescription: string;
|
|
4901
|
-
returnType: string;
|
|
4902
|
-
} | {
|
|
4656
|
+
methods: {
|
|
4903
4657
|
description: string;
|
|
4904
4658
|
name: string;
|
|
4905
4659
|
params: any[];
|
|
4660
|
+
returnDescription: string;
|
|
4906
4661
|
returnType: string;
|
|
4907
|
-
|
|
4908
|
-
})[];
|
|
4662
|
+
}[];
|
|
4909
4663
|
name: string;
|
|
4910
4664
|
properties: any[];
|
|
4911
4665
|
url: string;
|
|
4912
4666
|
};
|
|
4913
|
-
|
|
4914
|
-
description: string;
|
|
4667
|
+
ifsocketoption: {
|
|
4915
4668
|
implementers: {
|
|
4916
4669
|
description: string;
|
|
4917
4670
|
name: string;
|
|
4918
4671
|
url: string;
|
|
4919
4672
|
}[];
|
|
4920
4673
|
methods: ({
|
|
4921
|
-
name: string;
|
|
4922
|
-
params: {
|
|
4923
|
-
default: any;
|
|
4924
|
-
isRequired: boolean;
|
|
4925
|
-
name: string;
|
|
4926
|
-
type: string;
|
|
4927
|
-
}[];
|
|
4928
|
-
returnDescription: string;
|
|
4929
|
-
returnType: string;
|
|
4930
|
-
description?: undefined;
|
|
4931
|
-
} | {
|
|
4932
4674
|
description: string;
|
|
4933
4675
|
name: string;
|
|
4934
4676
|
params: {
|
|
@@ -4945,19 +4687,19 @@ export declare const interfaces: {
|
|
|
4945
4687
|
name: string;
|
|
4946
4688
|
params: {
|
|
4947
4689
|
default: any;
|
|
4690
|
+
description: string;
|
|
4948
4691
|
isRequired: boolean;
|
|
4949
4692
|
name: string;
|
|
4950
4693
|
type: string;
|
|
4951
4694
|
}[];
|
|
4952
|
-
returnDescription: string;
|
|
4953
4695
|
returnType: string;
|
|
4696
|
+
returnDescription?: undefined;
|
|
4954
4697
|
})[];
|
|
4955
4698
|
name: string;
|
|
4956
4699
|
properties: any[];
|
|
4957
4700
|
url: string;
|
|
4958
4701
|
};
|
|
4959
|
-
|
|
4960
|
-
description: string;
|
|
4702
|
+
ifsocketstatus: {
|
|
4961
4703
|
implementers: {
|
|
4962
4704
|
description: string;
|
|
4963
4705
|
name: string;
|
|
@@ -4966,33 +4708,21 @@ export declare const interfaces: {
|
|
|
4966
4708
|
methods: ({
|
|
4967
4709
|
description: string;
|
|
4968
4710
|
name: string;
|
|
4969
|
-
params:
|
|
4970
|
-
default: any;
|
|
4971
|
-
description: string;
|
|
4972
|
-
isRequired: boolean;
|
|
4973
|
-
name: string;
|
|
4974
|
-
type: string;
|
|
4975
|
-
}[];
|
|
4711
|
+
params: any[];
|
|
4976
4712
|
returnDescription: string;
|
|
4977
4713
|
returnType: string;
|
|
4978
4714
|
} | {
|
|
4979
|
-
description: string;
|
|
4980
4715
|
name: string;
|
|
4981
|
-
params:
|
|
4982
|
-
default: any;
|
|
4983
|
-
isRequired: boolean;
|
|
4984
|
-
name: string;
|
|
4985
|
-
type: string;
|
|
4986
|
-
}[];
|
|
4987
|
-
returnDescription: string;
|
|
4716
|
+
params: any[];
|
|
4988
4717
|
returnType: string;
|
|
4718
|
+
description?: undefined;
|
|
4719
|
+
returnDescription?: undefined;
|
|
4989
4720
|
})[];
|
|
4990
4721
|
name: string;
|
|
4991
4722
|
properties: any[];
|
|
4992
4723
|
url: string;
|
|
4993
4724
|
};
|
|
4994
|
-
|
|
4995
|
-
description: string;
|
|
4725
|
+
ifsourceidentity: {
|
|
4996
4726
|
implementers: {
|
|
4997
4727
|
description: string;
|
|
4998
4728
|
name: string;
|
|
@@ -5001,13 +4731,7 @@ export declare const interfaces: {
|
|
|
5001
4731
|
methods: {
|
|
5002
4732
|
description: string;
|
|
5003
4733
|
name: string;
|
|
5004
|
-
params:
|
|
5005
|
-
default: any;
|
|
5006
|
-
description: string;
|
|
5007
|
-
isRequired: boolean;
|
|
5008
|
-
name: string;
|
|
5009
|
-
type: string;
|
|
5010
|
-
}[];
|
|
4734
|
+
params: any[];
|
|
5011
4735
|
returnDescription: string;
|
|
5012
4736
|
returnType: string;
|
|
5013
4737
|
}[];
|
|
@@ -5015,8 +4739,7 @@ export declare const interfaces: {
|
|
|
5015
4739
|
properties: any[];
|
|
5016
4740
|
url: string;
|
|
5017
4741
|
};
|
|
5018
|
-
|
|
5019
|
-
description: string;
|
|
4742
|
+
ifsprite: {
|
|
5020
4743
|
implementers: {
|
|
5021
4744
|
description: string;
|
|
5022
4745
|
name: string;
|
|
@@ -5029,6 +4752,7 @@ export declare const interfaces: {
|
|
|
5029
4752
|
returnDescription: string;
|
|
5030
4753
|
returnType: string;
|
|
5031
4754
|
} | {
|
|
4755
|
+
description: string;
|
|
5032
4756
|
name: string;
|
|
5033
4757
|
params: {
|
|
5034
4758
|
default: any;
|
|
@@ -5037,15 +4761,14 @@ export declare const interfaces: {
|
|
|
5037
4761
|
name: string;
|
|
5038
4762
|
type: string;
|
|
5039
4763
|
}[];
|
|
5040
|
-
returnDescription: string;
|
|
5041
4764
|
returnType: string;
|
|
5042
|
-
|
|
4765
|
+
returnDescription?: undefined;
|
|
5043
4766
|
})[];
|
|
5044
4767
|
name: string;
|
|
5045
4768
|
properties: any[];
|
|
5046
4769
|
url: string;
|
|
5047
4770
|
};
|
|
5048
|
-
|
|
4771
|
+
ifstring: {
|
|
5049
4772
|
implementers: {
|
|
5050
4773
|
description: string;
|
|
5051
4774
|
name: string;
|
|
@@ -5055,8 +4778,8 @@ export declare const interfaces: {
|
|
|
5055
4778
|
description: string;
|
|
5056
4779
|
name: string;
|
|
5057
4780
|
params: any[];
|
|
4781
|
+
returnDescription: string;
|
|
5058
4782
|
returnType: string;
|
|
5059
|
-
returnDescription?: undefined;
|
|
5060
4783
|
} | {
|
|
5061
4784
|
description: string;
|
|
5062
4785
|
name: string;
|
|
@@ -5067,35 +4790,20 @@ export declare const interfaces: {
|
|
|
5067
4790
|
name: string;
|
|
5068
4791
|
type: string;
|
|
5069
4792
|
}[];
|
|
5070
|
-
returnDescription: string;
|
|
5071
4793
|
returnType: string;
|
|
4794
|
+
returnDescription?: undefined;
|
|
5072
4795
|
})[];
|
|
5073
4796
|
name: string;
|
|
5074
4797
|
properties: any[];
|
|
5075
4798
|
url: string;
|
|
5076
4799
|
};
|
|
5077
|
-
|
|
5078
|
-
deprecatedDescription: string;
|
|
5079
|
-
description: string;
|
|
4800
|
+
ifstringops: {
|
|
5080
4801
|
implementers: {
|
|
5081
4802
|
description: string;
|
|
5082
4803
|
name: string;
|
|
5083
4804
|
url: string;
|
|
5084
4805
|
}[];
|
|
5085
|
-
isDeprecated: boolean;
|
|
5086
4806
|
methods: ({
|
|
5087
|
-
description: string;
|
|
5088
|
-
name: string;
|
|
5089
|
-
params: {
|
|
5090
|
-
default: any;
|
|
5091
|
-
description: string;
|
|
5092
|
-
isRequired: boolean;
|
|
5093
|
-
name: string;
|
|
5094
|
-
type: string;
|
|
5095
|
-
}[];
|
|
5096
|
-
returnDescription: string;
|
|
5097
|
-
returnType: string;
|
|
5098
|
-
} | {
|
|
5099
4807
|
description: string;
|
|
5100
4808
|
name: string;
|
|
5101
4809
|
params: {
|
|
@@ -5108,6 +4816,7 @@ export declare const interfaces: {
|
|
|
5108
4816
|
returnType: string;
|
|
5109
4817
|
returnDescription?: undefined;
|
|
5110
4818
|
} | {
|
|
4819
|
+
description: string;
|
|
5111
4820
|
name: string;
|
|
5112
4821
|
params: {
|
|
5113
4822
|
default: any;
|
|
@@ -5118,31 +4827,18 @@ export declare const interfaces: {
|
|
|
5118
4827
|
}[];
|
|
5119
4828
|
returnDescription: string;
|
|
5120
4829
|
returnType: string;
|
|
5121
|
-
description?: undefined;
|
|
5122
|
-
} | {
|
|
5123
|
-
name: string;
|
|
5124
|
-
params: any[];
|
|
5125
|
-
returnType: string;
|
|
5126
|
-
description?: undefined;
|
|
5127
|
-
returnDescription?: undefined;
|
|
5128
4830
|
})[];
|
|
5129
4831
|
name: string;
|
|
5130
4832
|
properties: any[];
|
|
5131
4833
|
url: string;
|
|
5132
4834
|
};
|
|
5133
|
-
|
|
4835
|
+
ifsystemlog: {
|
|
5134
4836
|
implementers: {
|
|
5135
4837
|
description: string;
|
|
5136
4838
|
name: string;
|
|
5137
4839
|
url: string;
|
|
5138
4840
|
}[];
|
|
5139
|
-
methods:
|
|
5140
|
-
name: string;
|
|
5141
|
-
params: any[];
|
|
5142
|
-
returnType: string;
|
|
5143
|
-
description?: undefined;
|
|
5144
|
-
returnDescription?: undefined;
|
|
5145
|
-
} | {
|
|
4841
|
+
methods: {
|
|
5146
4842
|
description: string;
|
|
5147
4843
|
name: string;
|
|
5148
4844
|
params: {
|
|
@@ -5152,38 +4848,20 @@ export declare const interfaces: {
|
|
|
5152
4848
|
name: string;
|
|
5153
4849
|
type: string;
|
|
5154
4850
|
}[];
|
|
5155
|
-
returnDescription: string;
|
|
5156
|
-
returnType: string;
|
|
5157
|
-
} | {
|
|
5158
|
-
name: string;
|
|
5159
|
-
params: {
|
|
5160
|
-
default: any;
|
|
5161
|
-
description: string;
|
|
5162
|
-
isRequired: boolean;
|
|
5163
|
-
name: string;
|
|
5164
|
-
type: string;
|
|
5165
|
-
}[];
|
|
5166
|
-
returnDescription: string;
|
|
5167
4851
|
returnType: string;
|
|
5168
|
-
|
|
5169
|
-
})[];
|
|
4852
|
+
}[];
|
|
5170
4853
|
name: string;
|
|
5171
4854
|
properties: any[];
|
|
5172
4855
|
url: string;
|
|
5173
4856
|
};
|
|
5174
|
-
|
|
4857
|
+
iftexttospeech: {
|
|
4858
|
+
description: string;
|
|
5175
4859
|
implementers: {
|
|
5176
4860
|
description: string;
|
|
5177
4861
|
name: string;
|
|
5178
4862
|
url: string;
|
|
5179
4863
|
}[];
|
|
5180
4864
|
methods: ({
|
|
5181
|
-
name: string;
|
|
5182
|
-
params: any[];
|
|
5183
|
-
returnDescription: string;
|
|
5184
|
-
returnType: string;
|
|
5185
|
-
description?: undefined;
|
|
5186
|
-
} | {
|
|
5187
4865
|
description: string;
|
|
5188
4866
|
name: string;
|
|
5189
4867
|
params: {
|
|
@@ -5195,24 +4873,6 @@ export declare const interfaces: {
|
|
|
5195
4873
|
}[];
|
|
5196
4874
|
returnDescription: string;
|
|
5197
4875
|
returnType: string;
|
|
5198
|
-
})[];
|
|
5199
|
-
name: string;
|
|
5200
|
-
properties: any[];
|
|
5201
|
-
url: string;
|
|
5202
|
-
};
|
|
5203
|
-
ifsocketasync: {
|
|
5204
|
-
description: string;
|
|
5205
|
-
implementers: {
|
|
5206
|
-
description: string;
|
|
5207
|
-
name: string;
|
|
5208
|
-
url: string;
|
|
5209
|
-
}[];
|
|
5210
|
-
methods: ({
|
|
5211
|
-
description: string;
|
|
5212
|
-
name: string;
|
|
5213
|
-
params: any[];
|
|
5214
|
-
returnDescription: string;
|
|
5215
|
-
returnType: string;
|
|
5216
4876
|
} | {
|
|
5217
4877
|
description: string;
|
|
5218
4878
|
name: string;
|
|
@@ -5230,7 +4890,7 @@ export declare const interfaces: {
|
|
|
5230
4890
|
properties: any[];
|
|
5231
4891
|
url: string;
|
|
5232
4892
|
};
|
|
5233
|
-
|
|
4893
|
+
iftexturemanager: {
|
|
5234
4894
|
implementers: {
|
|
5235
4895
|
description: string;
|
|
5236
4896
|
name: string;
|
|
@@ -5246,25 +4906,24 @@ export declare const interfaces: {
|
|
|
5246
4906
|
name: string;
|
|
5247
4907
|
type: string;
|
|
5248
4908
|
}[];
|
|
5249
|
-
returnDescription: string;
|
|
5250
4909
|
returnType: string;
|
|
5251
4910
|
}[];
|
|
5252
4911
|
name: string;
|
|
5253
4912
|
properties: any[];
|
|
5254
4913
|
url: string;
|
|
5255
4914
|
};
|
|
5256
|
-
|
|
4915
|
+
iftexturerequest: {
|
|
5257
4916
|
implementers: {
|
|
5258
4917
|
description: string;
|
|
5259
4918
|
name: string;
|
|
5260
4919
|
url: string;
|
|
5261
4920
|
}[];
|
|
5262
4921
|
methods: ({
|
|
4922
|
+
description: string;
|
|
5263
4923
|
name: string;
|
|
5264
4924
|
params: any[];
|
|
5265
4925
|
returnDescription: string;
|
|
5266
4926
|
returnType: string;
|
|
5267
|
-
description?: undefined;
|
|
5268
4927
|
} | {
|
|
5269
4928
|
description: string;
|
|
5270
4929
|
name: string;
|
|
@@ -5275,54 +4934,14 @@ export declare const interfaces: {
|
|
|
5275
4934
|
name: string;
|
|
5276
4935
|
type: string;
|
|
5277
4936
|
}[];
|
|
5278
|
-
returnDescription: string;
|
|
5279
4937
|
returnType: string;
|
|
4938
|
+
returnDescription?: undefined;
|
|
5280
4939
|
})[];
|
|
5281
4940
|
name: string;
|
|
5282
4941
|
properties: any[];
|
|
5283
4942
|
url: string;
|
|
5284
4943
|
};
|
|
5285
|
-
|
|
5286
|
-
implementers: {
|
|
5287
|
-
description: string;
|
|
5288
|
-
name: string;
|
|
5289
|
-
url: string;
|
|
5290
|
-
}[];
|
|
5291
|
-
methods: {
|
|
5292
|
-
description: string;
|
|
5293
|
-
name: string;
|
|
5294
|
-
params: {
|
|
5295
|
-
default: any;
|
|
5296
|
-
description: string;
|
|
5297
|
-
isRequired: boolean;
|
|
5298
|
-
name: string;
|
|
5299
|
-
type: string;
|
|
5300
|
-
}[];
|
|
5301
|
-
returnDescription: string;
|
|
5302
|
-
returnType: string;
|
|
5303
|
-
}[];
|
|
5304
|
-
name: string;
|
|
5305
|
-
properties: any[];
|
|
5306
|
-
url: string;
|
|
5307
|
-
};
|
|
5308
|
-
ifsocketconnectionstatus: {
|
|
5309
|
-
implementers: {
|
|
5310
|
-
description: string;
|
|
5311
|
-
name: string;
|
|
5312
|
-
url: string;
|
|
5313
|
-
}[];
|
|
5314
|
-
methods: {
|
|
5315
|
-
description: string;
|
|
5316
|
-
name: string;
|
|
5317
|
-
params: any[];
|
|
5318
|
-
returnDescription: string;
|
|
5319
|
-
returnType: string;
|
|
5320
|
-
}[];
|
|
5321
|
-
name: string;
|
|
5322
|
-
properties: any[];
|
|
5323
|
-
url: string;
|
|
5324
|
-
};
|
|
5325
|
-
ifsocketoption: {
|
|
4944
|
+
iftimespan: {
|
|
5326
4945
|
implementers: {
|
|
5327
4946
|
description: string;
|
|
5328
4947
|
name: string;
|
|
@@ -5333,7 +4952,6 @@ export declare const interfaces: {
|
|
|
5333
4952
|
name: string;
|
|
5334
4953
|
params: {
|
|
5335
4954
|
default: any;
|
|
5336
|
-
description: string;
|
|
5337
4955
|
isRequired: boolean;
|
|
5338
4956
|
name: string;
|
|
5339
4957
|
type: string;
|
|
@@ -5342,45 +4960,16 @@ export declare const interfaces: {
|
|
|
5342
4960
|
returnType: string;
|
|
5343
4961
|
} | {
|
|
5344
4962
|
description: string;
|
|
5345
|
-
name: string;
|
|
5346
|
-
params: {
|
|
5347
|
-
default: any;
|
|
5348
|
-
description: string;
|
|
5349
|
-
isRequired: boolean;
|
|
5350
|
-
name: string;
|
|
5351
|
-
type: string;
|
|
5352
|
-
}[];
|
|
5353
|
-
returnType: string;
|
|
5354
|
-
returnDescription?: undefined;
|
|
5355
|
-
})[];
|
|
5356
|
-
name: string;
|
|
5357
|
-
properties: any[];
|
|
5358
|
-
url: string;
|
|
5359
|
-
};
|
|
5360
|
-
ifsocketstatus: {
|
|
5361
|
-
implementers: {
|
|
5362
|
-
description: string;
|
|
5363
|
-
name: string;
|
|
5364
|
-
url: string;
|
|
5365
|
-
}[];
|
|
5366
|
-
methods: ({
|
|
5367
|
-
description: string;
|
|
5368
|
-
name: string;
|
|
5369
|
-
params: any[];
|
|
5370
|
-
returnDescription: string;
|
|
5371
|
-
returnType: string;
|
|
5372
|
-
} | {
|
|
5373
4963
|
name: string;
|
|
5374
4964
|
params: any[];
|
|
5375
4965
|
returnType: string;
|
|
5376
|
-
description?: undefined;
|
|
5377
4966
|
returnDescription?: undefined;
|
|
5378
4967
|
})[];
|
|
5379
4968
|
name: string;
|
|
5380
4969
|
properties: any[];
|
|
5381
4970
|
url: string;
|
|
5382
4971
|
};
|
|
5383
|
-
|
|
4972
|
+
iftostr: {
|
|
5384
4973
|
implementers: {
|
|
5385
4974
|
description: string;
|
|
5386
4975
|
name: string;
|
|
@@ -5397,16 +4986,21 @@ export declare const interfaces: {
|
|
|
5397
4986
|
properties: any[];
|
|
5398
4987
|
url: string;
|
|
5399
4988
|
};
|
|
5400
|
-
|
|
5401
|
-
deprecatedDescription: string;
|
|
5402
|
-
description: string;
|
|
4989
|
+
ifurltransfer: {
|
|
5403
4990
|
implementers: {
|
|
5404
4991
|
description: string;
|
|
5405
4992
|
name: string;
|
|
5406
4993
|
url: string;
|
|
5407
4994
|
}[];
|
|
5408
|
-
isDeprecated: boolean;
|
|
5409
4995
|
methods: ({
|
|
4996
|
+
name: string;
|
|
4997
|
+
params: any[];
|
|
4998
|
+
returnType: string;
|
|
4999
|
+
description?: undefined;
|
|
5000
|
+
returnDescription?: undefined;
|
|
5001
|
+
deprecatedDescription?: undefined;
|
|
5002
|
+
isDeprecated?: undefined;
|
|
5003
|
+
} | {
|
|
5410
5004
|
description: string;
|
|
5411
5005
|
name: string;
|
|
5412
5006
|
params: {
|
|
@@ -5418,18 +5012,21 @@ export declare const interfaces: {
|
|
|
5418
5012
|
}[];
|
|
5419
5013
|
returnDescription: string;
|
|
5420
5014
|
returnType: string;
|
|
5015
|
+
deprecatedDescription?: undefined;
|
|
5016
|
+
isDeprecated?: undefined;
|
|
5421
5017
|
} | {
|
|
5018
|
+
description: string;
|
|
5422
5019
|
name: string;
|
|
5423
5020
|
params: {
|
|
5424
5021
|
default: any;
|
|
5425
|
-
description: string;
|
|
5426
5022
|
isRequired: boolean;
|
|
5427
5023
|
name: string;
|
|
5428
5024
|
type: string;
|
|
5429
5025
|
}[];
|
|
5026
|
+
returnDescription: string;
|
|
5430
5027
|
returnType: string;
|
|
5431
|
-
|
|
5432
|
-
|
|
5028
|
+
deprecatedDescription?: undefined;
|
|
5029
|
+
isDeprecated?: undefined;
|
|
5433
5030
|
} | {
|
|
5434
5031
|
description: string;
|
|
5435
5032
|
name: string;
|
|
@@ -5442,8 +5039,12 @@ export declare const interfaces: {
|
|
|
5442
5039
|
}[];
|
|
5443
5040
|
returnType: string;
|
|
5444
5041
|
returnDescription?: undefined;
|
|
5042
|
+
deprecatedDescription?: undefined;
|
|
5043
|
+
isDeprecated?: undefined;
|
|
5445
5044
|
} | {
|
|
5045
|
+
deprecatedDescription: string;
|
|
5446
5046
|
description: string;
|
|
5047
|
+
isDeprecated: boolean;
|
|
5447
5048
|
name: string;
|
|
5448
5049
|
params: {
|
|
5449
5050
|
default: any;
|
|
@@ -5451,26 +5052,20 @@ export declare const interfaces: {
|
|
|
5451
5052
|
name: string;
|
|
5452
5053
|
type: string;
|
|
5453
5054
|
}[];
|
|
5055
|
+
returnDescription: string;
|
|
5454
5056
|
returnType: string;
|
|
5455
|
-
returnDescription?: undefined;
|
|
5456
5057
|
})[];
|
|
5457
5058
|
name: string;
|
|
5458
5059
|
properties: any[];
|
|
5459
5060
|
url: string;
|
|
5460
5061
|
};
|
|
5461
|
-
|
|
5062
|
+
ifvideoplayer: {
|
|
5462
5063
|
implementers: {
|
|
5463
5064
|
description: string;
|
|
5464
5065
|
name: string;
|
|
5465
5066
|
url: string;
|
|
5466
5067
|
}[];
|
|
5467
5068
|
methods: ({
|
|
5468
|
-
description: string;
|
|
5469
|
-
name: string;
|
|
5470
|
-
params: any[];
|
|
5471
|
-
returnDescription: string;
|
|
5472
|
-
returnType: string;
|
|
5473
|
-
} | {
|
|
5474
5069
|
description: string;
|
|
5475
5070
|
name: string;
|
|
5476
5071
|
params: {
|
|
@@ -5482,41 +5077,35 @@ export declare const interfaces: {
|
|
|
5482
5077
|
}[];
|
|
5483
5078
|
returnType: string;
|
|
5484
5079
|
returnDescription?: undefined;
|
|
5485
|
-
|
|
5486
|
-
|
|
5487
|
-
|
|
5488
|
-
url: string;
|
|
5489
|
-
};
|
|
5490
|
-
ifstring: {
|
|
5491
|
-
implementers: {
|
|
5492
|
-
description: string;
|
|
5493
|
-
name: string;
|
|
5494
|
-
url: string;
|
|
5495
|
-
}[];
|
|
5496
|
-
methods: ({
|
|
5080
|
+
deprecatedDescription?: undefined;
|
|
5081
|
+
isDeprecated?: undefined;
|
|
5082
|
+
} | {
|
|
5497
5083
|
description: string;
|
|
5498
5084
|
name: string;
|
|
5499
5085
|
params: any[];
|
|
5500
5086
|
returnDescription: string;
|
|
5501
5087
|
returnType: string;
|
|
5088
|
+
deprecatedDescription?: undefined;
|
|
5089
|
+
isDeprecated?: undefined;
|
|
5502
5090
|
} | {
|
|
5503
|
-
|
|
5091
|
+
deprecatedDescription: string;
|
|
5092
|
+
isDeprecated: boolean;
|
|
5504
5093
|
name: string;
|
|
5505
5094
|
params: {
|
|
5506
5095
|
default: any;
|
|
5507
|
-
description: string;
|
|
5508
5096
|
isRequired: boolean;
|
|
5509
5097
|
name: string;
|
|
5510
5098
|
type: string;
|
|
5511
5099
|
}[];
|
|
5512
5100
|
returnType: string;
|
|
5101
|
+
description?: undefined;
|
|
5513
5102
|
returnDescription?: undefined;
|
|
5514
5103
|
})[];
|
|
5515
5104
|
name: string;
|
|
5516
5105
|
properties: any[];
|
|
5517
5106
|
url: string;
|
|
5518
5107
|
};
|
|
5519
|
-
|
|
5108
|
+
ifxmlelement: {
|
|
5520
5109
|
implementers: {
|
|
5521
5110
|
description: string;
|
|
5522
5111
|
name: string;
|
|
@@ -5535,18 +5124,18 @@ export declare const interfaces: {
|
|
|
5535
5124
|
returnType: string;
|
|
5536
5125
|
returnDescription?: undefined;
|
|
5537
5126
|
} | {
|
|
5127
|
+
description: string;
|
|
5538
5128
|
name: string;
|
|
5539
5129
|
params: {
|
|
5540
5130
|
default: any;
|
|
5131
|
+
description: string;
|
|
5541
5132
|
isRequired: boolean;
|
|
5542
5133
|
name: string;
|
|
5543
5134
|
type: string;
|
|
5544
5135
|
}[];
|
|
5545
5136
|
returnDescription: string;
|
|
5546
5137
|
returnType: string;
|
|
5547
|
-
description?: undefined;
|
|
5548
5138
|
} | {
|
|
5549
|
-
description: string;
|
|
5550
5139
|
name: string;
|
|
5551
5140
|
params: {
|
|
5552
5141
|
default: any;
|
|
@@ -5557,12 +5146,13 @@ export declare const interfaces: {
|
|
|
5557
5146
|
}[];
|
|
5558
5147
|
returnDescription: string;
|
|
5559
5148
|
returnType: string;
|
|
5149
|
+
description?: undefined;
|
|
5560
5150
|
})[];
|
|
5561
5151
|
name: string;
|
|
5562
5152
|
properties: any[];
|
|
5563
5153
|
url: string;
|
|
5564
5154
|
};
|
|
5565
|
-
|
|
5155
|
+
ifxmllist: {
|
|
5566
5156
|
implementers: {
|
|
5567
5157
|
description: string;
|
|
5568
5158
|
name: string;
|
|
@@ -5578,426 +5168,7 @@ export declare const interfaces: {
|
|
|
5578
5168
|
name: string;
|
|
5579
5169
|
type: string;
|
|
5580
5170
|
}[];
|
|
5581
|
-
|
|
5582
|
-
}[];
|
|
5583
|
-
name: string;
|
|
5584
|
-
properties: any[];
|
|
5585
|
-
url: string;
|
|
5586
|
-
};
|
|
5587
|
-
iftextscreen: {
|
|
5588
|
-
description: string;
|
|
5589
|
-
implementers: {
|
|
5590
|
-
description: string;
|
|
5591
|
-
name: string;
|
|
5592
|
-
url: string;
|
|
5593
|
-
}[];
|
|
5594
|
-
methods: ({
|
|
5595
|
-
description: string;
|
|
5596
|
-
name: string;
|
|
5597
|
-
params: {
|
|
5598
|
-
default: any;
|
|
5599
|
-
description: string;
|
|
5600
|
-
isRequired: boolean;
|
|
5601
|
-
name: string;
|
|
5602
|
-
type: string;
|
|
5603
|
-
}[];
|
|
5604
|
-
returnDescription: string;
|
|
5605
|
-
returnType: string;
|
|
5606
|
-
} | {
|
|
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
|
-
properties: any[];
|
|
5621
|
-
url: string;
|
|
5622
|
-
};
|
|
5623
|
-
iftexttospeech: {
|
|
5624
|
-
description: string;
|
|
5625
|
-
implementers: {
|
|
5626
|
-
description: string;
|
|
5627
|
-
name: string;
|
|
5628
|
-
url: string;
|
|
5629
|
-
}[];
|
|
5630
|
-
methods: ({
|
|
5631
|
-
description: string;
|
|
5632
|
-
name: string;
|
|
5633
|
-
params: {
|
|
5634
|
-
default: any;
|
|
5635
|
-
description: string;
|
|
5636
|
-
isRequired: boolean;
|
|
5637
|
-
name: string;
|
|
5638
|
-
type: string;
|
|
5639
|
-
}[];
|
|
5640
|
-
returnDescription: string;
|
|
5641
|
-
returnType: string;
|
|
5642
|
-
} | {
|
|
5643
|
-
description: string;
|
|
5644
|
-
name: string;
|
|
5645
|
-
params: {
|
|
5646
|
-
default: any;
|
|
5647
|
-
description: string;
|
|
5648
|
-
isRequired: boolean;
|
|
5649
|
-
name: string;
|
|
5650
|
-
type: string;
|
|
5651
|
-
}[];
|
|
5652
|
-
returnType: string;
|
|
5653
|
-
returnDescription?: undefined;
|
|
5654
|
-
})[];
|
|
5655
|
-
name: string;
|
|
5656
|
-
properties: any[];
|
|
5657
|
-
url: string;
|
|
5658
|
-
};
|
|
5659
|
-
iftexturemanager: {
|
|
5660
|
-
implementers: {
|
|
5661
|
-
description: string;
|
|
5662
|
-
name: string;
|
|
5663
|
-
url: string;
|
|
5664
|
-
}[];
|
|
5665
|
-
methods: {
|
|
5666
|
-
description: string;
|
|
5667
|
-
name: string;
|
|
5668
|
-
params: {
|
|
5669
|
-
default: any;
|
|
5670
|
-
description: string;
|
|
5671
|
-
isRequired: boolean;
|
|
5672
|
-
name: string;
|
|
5673
|
-
type: string;
|
|
5674
|
-
}[];
|
|
5675
|
-
returnType: string;
|
|
5676
|
-
}[];
|
|
5677
|
-
name: string;
|
|
5678
|
-
properties: any[];
|
|
5679
|
-
url: string;
|
|
5680
|
-
};
|
|
5681
|
-
iftexturerequest: {
|
|
5682
|
-
implementers: {
|
|
5683
|
-
description: string;
|
|
5684
|
-
name: string;
|
|
5685
|
-
url: string;
|
|
5686
|
-
}[];
|
|
5687
|
-
methods: ({
|
|
5688
|
-
description: string;
|
|
5689
|
-
name: string;
|
|
5690
|
-
params: any[];
|
|
5691
|
-
returnDescription: string;
|
|
5692
|
-
returnType: string;
|
|
5693
|
-
} | {
|
|
5694
|
-
description: string;
|
|
5695
|
-
name: string;
|
|
5696
|
-
params: {
|
|
5697
|
-
default: any;
|
|
5698
|
-
description: string;
|
|
5699
|
-
isRequired: boolean;
|
|
5700
|
-
name: string;
|
|
5701
|
-
type: string;
|
|
5702
|
-
}[];
|
|
5703
|
-
returnType: string;
|
|
5704
|
-
returnDescription?: undefined;
|
|
5705
|
-
})[];
|
|
5706
|
-
name: string;
|
|
5707
|
-
properties: any[];
|
|
5708
|
-
url: string;
|
|
5709
|
-
};
|
|
5710
|
-
iftimespan: {
|
|
5711
|
-
implementers: {
|
|
5712
|
-
description: string;
|
|
5713
|
-
name: string;
|
|
5714
|
-
url: string;
|
|
5715
|
-
}[];
|
|
5716
|
-
methods: ({
|
|
5717
|
-
description: string;
|
|
5718
|
-
name: string;
|
|
5719
|
-
params: {
|
|
5720
|
-
default: any;
|
|
5721
|
-
isRequired: boolean;
|
|
5722
|
-
name: string;
|
|
5723
|
-
type: string;
|
|
5724
|
-
}[];
|
|
5725
|
-
returnDescription: string;
|
|
5726
|
-
returnType: string;
|
|
5727
|
-
} | {
|
|
5728
|
-
description: string;
|
|
5729
|
-
name: string;
|
|
5730
|
-
params: any[];
|
|
5731
|
-
returnType: string;
|
|
5732
|
-
returnDescription?: undefined;
|
|
5733
|
-
})[];
|
|
5734
|
-
name: string;
|
|
5735
|
-
properties: any[];
|
|
5736
|
-
url: string;
|
|
5737
|
-
};
|
|
5738
|
-
iftostr: {
|
|
5739
|
-
implementers: {
|
|
5740
|
-
description: string;
|
|
5741
|
-
name: string;
|
|
5742
|
-
url: string;
|
|
5743
|
-
}[];
|
|
5744
|
-
methods: {
|
|
5745
|
-
description: string;
|
|
5746
|
-
name: string;
|
|
5747
|
-
params: any[];
|
|
5748
|
-
returnDescription: string;
|
|
5749
|
-
returnType: string;
|
|
5750
|
-
}[];
|
|
5751
|
-
name: string;
|
|
5752
|
-
properties: any[];
|
|
5753
|
-
url: string;
|
|
5754
|
-
};
|
|
5755
|
-
ifurltransfer: {
|
|
5756
|
-
implementers: {
|
|
5757
|
-
description: string;
|
|
5758
|
-
name: string;
|
|
5759
|
-
url: string;
|
|
5760
|
-
}[];
|
|
5761
|
-
methods: ({
|
|
5762
|
-
name: string;
|
|
5763
|
-
params: any[];
|
|
5764
|
-
returnType: string;
|
|
5765
|
-
description?: undefined;
|
|
5766
|
-
returnDescription?: undefined;
|
|
5767
|
-
deprecatedDescription?: undefined;
|
|
5768
|
-
isDeprecated?: undefined;
|
|
5769
|
-
} | {
|
|
5770
|
-
description: string;
|
|
5771
|
-
name: string;
|
|
5772
|
-
params: {
|
|
5773
|
-
default: any;
|
|
5774
|
-
description: string;
|
|
5775
|
-
isRequired: boolean;
|
|
5776
|
-
name: string;
|
|
5777
|
-
type: string;
|
|
5778
|
-
}[];
|
|
5779
|
-
returnDescription: string;
|
|
5780
|
-
returnType: string;
|
|
5781
|
-
deprecatedDescription?: undefined;
|
|
5782
|
-
isDeprecated?: undefined;
|
|
5783
|
-
} | {
|
|
5784
|
-
description: string;
|
|
5785
|
-
name: string;
|
|
5786
|
-
params: {
|
|
5787
|
-
default: any;
|
|
5788
|
-
isRequired: boolean;
|
|
5789
|
-
name: string;
|
|
5790
|
-
type: string;
|
|
5791
|
-
}[];
|
|
5792
|
-
returnDescription: string;
|
|
5793
|
-
returnType: string;
|
|
5794
|
-
deprecatedDescription?: undefined;
|
|
5795
|
-
isDeprecated?: undefined;
|
|
5796
|
-
} | {
|
|
5797
|
-
description: string;
|
|
5798
|
-
name: string;
|
|
5799
|
-
params: {
|
|
5800
|
-
default: any;
|
|
5801
|
-
description: string;
|
|
5802
|
-
isRequired: boolean;
|
|
5803
|
-
name: string;
|
|
5804
|
-
type: string;
|
|
5805
|
-
}[];
|
|
5806
|
-
returnType: string;
|
|
5807
|
-
returnDescription?: undefined;
|
|
5808
|
-
deprecatedDescription?: undefined;
|
|
5809
|
-
isDeprecated?: undefined;
|
|
5810
|
-
} | {
|
|
5811
|
-
deprecatedDescription: string;
|
|
5812
|
-
description: string;
|
|
5813
|
-
isDeprecated: boolean;
|
|
5814
|
-
name: string;
|
|
5815
|
-
params: {
|
|
5816
|
-
default: any;
|
|
5817
|
-
isRequired: boolean;
|
|
5818
|
-
name: string;
|
|
5819
|
-
type: string;
|
|
5820
|
-
}[];
|
|
5821
|
-
returnDescription: string;
|
|
5822
|
-
returnType: string;
|
|
5823
|
-
})[];
|
|
5824
|
-
name: string;
|
|
5825
|
-
properties: any[];
|
|
5826
|
-
url: string;
|
|
5827
|
-
};
|
|
5828
|
-
ifvideoplayer: {
|
|
5829
|
-
implementers: {
|
|
5830
|
-
description: string;
|
|
5831
|
-
name: string;
|
|
5832
|
-
url: string;
|
|
5833
|
-
}[];
|
|
5834
|
-
methods: ({
|
|
5835
|
-
description: string;
|
|
5836
|
-
name: string;
|
|
5837
|
-
params: {
|
|
5838
|
-
default: any;
|
|
5839
|
-
description: string;
|
|
5840
|
-
isRequired: boolean;
|
|
5841
|
-
name: string;
|
|
5842
|
-
type: string;
|
|
5843
|
-
}[];
|
|
5844
|
-
returnType: string;
|
|
5845
|
-
returnDescription?: undefined;
|
|
5846
|
-
deprecatedDescription?: undefined;
|
|
5847
|
-
isDeprecated?: undefined;
|
|
5848
|
-
} | {
|
|
5849
|
-
description: string;
|
|
5850
|
-
name: string;
|
|
5851
|
-
params: any[];
|
|
5852
|
-
returnDescription: string;
|
|
5853
|
-
returnType: string;
|
|
5854
|
-
deprecatedDescription?: undefined;
|
|
5855
|
-
isDeprecated?: undefined;
|
|
5856
|
-
} | {
|
|
5857
|
-
deprecatedDescription: string;
|
|
5858
|
-
isDeprecated: boolean;
|
|
5859
|
-
name: string;
|
|
5860
|
-
params: {
|
|
5861
|
-
default: any;
|
|
5862
|
-
isRequired: boolean;
|
|
5863
|
-
name: string;
|
|
5864
|
-
type: string;
|
|
5865
|
-
}[];
|
|
5866
|
-
returnType: string;
|
|
5867
|
-
description?: undefined;
|
|
5868
|
-
returnDescription?: undefined;
|
|
5869
|
-
})[];
|
|
5870
|
-
name: string;
|
|
5871
|
-
properties: any[];
|
|
5872
|
-
url: string;
|
|
5873
|
-
};
|
|
5874
|
-
ifvideoscreen: {
|
|
5875
|
-
deprecatedDescription: string;
|
|
5876
|
-
description: string;
|
|
5877
|
-
implementers: {
|
|
5878
|
-
description: string;
|
|
5879
|
-
name: string;
|
|
5880
|
-
url: string;
|
|
5881
|
-
}[];
|
|
5882
|
-
isDeprecated: boolean;
|
|
5883
|
-
methods: ({
|
|
5884
|
-
name: string;
|
|
5885
|
-
params: any[];
|
|
5886
|
-
returnType: string;
|
|
5887
|
-
description?: undefined;
|
|
5888
|
-
returnDescription?: undefined;
|
|
5889
|
-
deprecatedDescription?: undefined;
|
|
5890
|
-
isDeprecated?: undefined;
|
|
5891
|
-
} | {
|
|
5892
|
-
description: string;
|
|
5893
|
-
name: string;
|
|
5894
|
-
params: {
|
|
5895
|
-
default: any;
|
|
5896
|
-
description: string;
|
|
5897
|
-
isRequired: boolean;
|
|
5898
|
-
name: string;
|
|
5899
|
-
type: string;
|
|
5900
|
-
}[];
|
|
5901
|
-
returnType: string;
|
|
5902
|
-
returnDescription?: undefined;
|
|
5903
|
-
deprecatedDescription?: undefined;
|
|
5904
|
-
isDeprecated?: undefined;
|
|
5905
|
-
} | {
|
|
5906
|
-
description: string;
|
|
5907
|
-
name: string;
|
|
5908
|
-
params: {
|
|
5909
|
-
default: any;
|
|
5910
|
-
description: string;
|
|
5911
|
-
isRequired: boolean;
|
|
5912
|
-
name: string;
|
|
5913
|
-
type: string;
|
|
5914
|
-
}[];
|
|
5915
|
-
returnDescription: string;
|
|
5916
|
-
returnType: string;
|
|
5917
|
-
deprecatedDescription?: undefined;
|
|
5918
|
-
isDeprecated?: undefined;
|
|
5919
|
-
} | {
|
|
5920
|
-
deprecatedDescription: string;
|
|
5921
|
-
isDeprecated: boolean;
|
|
5922
|
-
name: string;
|
|
5923
|
-
params: {
|
|
5924
|
-
default: any;
|
|
5925
|
-
isRequired: boolean;
|
|
5926
|
-
name: string;
|
|
5927
|
-
type: string;
|
|
5928
|
-
}[];
|
|
5929
|
-
returnType: string;
|
|
5930
|
-
description?: undefined;
|
|
5931
|
-
returnDescription?: undefined;
|
|
5932
|
-
})[];
|
|
5933
|
-
name: string;
|
|
5934
|
-
properties: any[];
|
|
5935
|
-
url: string;
|
|
5936
|
-
};
|
|
5937
|
-
ifxmlelement: {
|
|
5938
|
-
implementers: {
|
|
5939
|
-
description: string;
|
|
5940
|
-
name: string;
|
|
5941
|
-
url: string;
|
|
5942
|
-
}[];
|
|
5943
|
-
methods: ({
|
|
5944
|
-
description: string;
|
|
5945
|
-
name: string;
|
|
5946
|
-
params: {
|
|
5947
|
-
default: any;
|
|
5948
|
-
description: string;
|
|
5949
|
-
isRequired: boolean;
|
|
5950
|
-
name: string;
|
|
5951
|
-
type: string;
|
|
5952
|
-
}[];
|
|
5953
|
-
returnType: string;
|
|
5954
|
-
returnDescription?: undefined;
|
|
5955
|
-
} | {
|
|
5956
|
-
description: string;
|
|
5957
|
-
name: string;
|
|
5958
|
-
params: {
|
|
5959
|
-
default: any;
|
|
5960
|
-
description: string;
|
|
5961
|
-
isRequired: boolean;
|
|
5962
|
-
name: string;
|
|
5963
|
-
type: string;
|
|
5964
|
-
}[];
|
|
5965
|
-
returnDescription: string;
|
|
5966
|
-
returnType: string;
|
|
5967
|
-
} | {
|
|
5968
|
-
name: string;
|
|
5969
|
-
params: {
|
|
5970
|
-
default: any;
|
|
5971
|
-
description: string;
|
|
5972
|
-
isRequired: boolean;
|
|
5973
|
-
name: string;
|
|
5974
|
-
type: string;
|
|
5975
|
-
}[];
|
|
5976
|
-
returnDescription: string;
|
|
5977
|
-
returnType: string;
|
|
5978
|
-
description?: undefined;
|
|
5979
|
-
})[];
|
|
5980
|
-
name: string;
|
|
5981
|
-
properties: any[];
|
|
5982
|
-
url: string;
|
|
5983
|
-
};
|
|
5984
|
-
ifxmllist: {
|
|
5985
|
-
implementers: {
|
|
5986
|
-
description: string;
|
|
5987
|
-
name: string;
|
|
5988
|
-
url: string;
|
|
5989
|
-
}[];
|
|
5990
|
-
methods: {
|
|
5991
|
-
description: string;
|
|
5992
|
-
name: string;
|
|
5993
|
-
params: {
|
|
5994
|
-
default: any;
|
|
5995
|
-
description: string;
|
|
5996
|
-
isRequired: boolean;
|
|
5997
|
-
name: string;
|
|
5998
|
-
type: string;
|
|
5999
|
-
}[];
|
|
6000
|
-
returnDescription: string;
|
|
5171
|
+
returnDescription: string;
|
|
6001
5172
|
returnType: string;
|
|
6002
5173
|
}[];
|
|
6003
5174
|
name: string;
|
|
@@ -6006,29 +5177,23 @@ export declare const interfaces: {
|
|
|
6006
5177
|
};
|
|
6007
5178
|
};
|
|
6008
5179
|
export declare const events: {
|
|
6009
|
-
|
|
5180
|
+
roappmemorymonitorevent: {
|
|
6010
5181
|
description: string;
|
|
6011
5182
|
implementers: {
|
|
6012
5183
|
name: string;
|
|
6013
5184
|
url: string;
|
|
6014
5185
|
}[];
|
|
6015
|
-
methods:
|
|
6016
|
-
name: string;
|
|
6017
|
-
params: any[];
|
|
6018
|
-
returnType: string;
|
|
6019
|
-
}[];
|
|
5186
|
+
methods: any[];
|
|
6020
5187
|
name: string;
|
|
6021
5188
|
properties: any[];
|
|
6022
5189
|
url: string;
|
|
6023
5190
|
};
|
|
6024
|
-
|
|
6025
|
-
deprecatedDescription: string;
|
|
5191
|
+
roaudioplayerevent: {
|
|
6026
5192
|
description: string;
|
|
6027
5193
|
implementers: {
|
|
6028
5194
|
name: string;
|
|
6029
5195
|
url: string;
|
|
6030
5196
|
}[];
|
|
6031
|
-
isDeprecated: boolean;
|
|
6032
5197
|
methods: {
|
|
6033
5198
|
name: string;
|
|
6034
5199
|
params: any[];
|
|
@@ -6039,19 +5204,6 @@ export declare const events: {
|
|
|
6039
5204
|
url: string;
|
|
6040
5205
|
};
|
|
6041
5206
|
rocecstatusevent: {
|
|
6042
|
-
availableSince: string;
|
|
6043
|
-
description: string;
|
|
6044
|
-
implementers: any[];
|
|
6045
|
-
methods: {
|
|
6046
|
-
name: string;
|
|
6047
|
-
params: any[];
|
|
6048
|
-
returnType: string;
|
|
6049
|
-
}[];
|
|
6050
|
-
name: string;
|
|
6051
|
-
properties: any[];
|
|
6052
|
-
url: string;
|
|
6053
|
-
};
|
|
6054
|
-
rochannelstoreevent: {
|
|
6055
5207
|
description: string;
|
|
6056
5208
|
implementers: {
|
|
6057
5209
|
name: string;
|
|
@@ -6066,14 +5218,12 @@ export declare const events: {
|
|
|
6066
5218
|
properties: any[];
|
|
6067
5219
|
url: string;
|
|
6068
5220
|
};
|
|
6069
|
-
|
|
6070
|
-
deprecatedDescription: string;
|
|
5221
|
+
rochannelstoreevent: {
|
|
6071
5222
|
description: string;
|
|
6072
5223
|
implementers: {
|
|
6073
5224
|
name: string;
|
|
6074
5225
|
url: string;
|
|
6075
5226
|
}[];
|
|
6076
|
-
isDeprecated: boolean;
|
|
6077
5227
|
methods: {
|
|
6078
5228
|
name: string;
|
|
6079
5229
|
params: any[];
|
|
@@ -6114,35 +5264,6 @@ export declare const events: {
|
|
|
6114
5264
|
properties: any[];
|
|
6115
5265
|
url: string;
|
|
6116
5266
|
};
|
|
6117
|
-
rogridscreenevent: {
|
|
6118
|
-
deprecatedDescription: string;
|
|
6119
|
-
description: string;
|
|
6120
|
-
implementers: {
|
|
6121
|
-
name: string;
|
|
6122
|
-
url: string;
|
|
6123
|
-
}[];
|
|
6124
|
-
isDeprecated: boolean;
|
|
6125
|
-
methods: {
|
|
6126
|
-
name: string;
|
|
6127
|
-
params: any[];
|
|
6128
|
-
returnType: string;
|
|
6129
|
-
}[];
|
|
6130
|
-
name: string;
|
|
6131
|
-
properties: any[];
|
|
6132
|
-
url: string;
|
|
6133
|
-
};
|
|
6134
|
-
rohdmihotplugevent: {
|
|
6135
|
-
description: string;
|
|
6136
|
-
implementers: any[];
|
|
6137
|
-
methods: {
|
|
6138
|
-
name: string;
|
|
6139
|
-
params: any[];
|
|
6140
|
-
returnType: string;
|
|
6141
|
-
}[];
|
|
6142
|
-
name: string;
|
|
6143
|
-
properties: any[];
|
|
6144
|
-
url: string;
|
|
6145
|
-
};
|
|
6146
5267
|
rohdmistatusevent: {
|
|
6147
5268
|
description: string;
|
|
6148
5269
|
implementers: any[];
|
|
@@ -6155,23 +5276,6 @@ export declare const events: {
|
|
|
6155
5276
|
properties: any[];
|
|
6156
5277
|
url: string;
|
|
6157
5278
|
};
|
|
6158
|
-
roimagecanvasevent: {
|
|
6159
|
-
deprecatedDescription: string;
|
|
6160
|
-
description: string;
|
|
6161
|
-
implementers: {
|
|
6162
|
-
name: string;
|
|
6163
|
-
url: string;
|
|
6164
|
-
}[];
|
|
6165
|
-
isDeprecated: boolean;
|
|
6166
|
-
methods: {
|
|
6167
|
-
name: string;
|
|
6168
|
-
params: any[];
|
|
6169
|
-
returnType: string;
|
|
6170
|
-
}[];
|
|
6171
|
-
name: string;
|
|
6172
|
-
properties: any[];
|
|
6173
|
-
url: string;
|
|
6174
|
-
};
|
|
6175
5279
|
roinputevent: {
|
|
6176
5280
|
description: string;
|
|
6177
5281
|
implementers: {
|
|
@@ -6187,57 +5291,6 @@ export declare const events: {
|
|
|
6187
5291
|
properties: any[];
|
|
6188
5292
|
url: string;
|
|
6189
5293
|
};
|
|
6190
|
-
rokeyboardscreenevent: {
|
|
6191
|
-
deprecatedDescription: string;
|
|
6192
|
-
description: string;
|
|
6193
|
-
implementers: {
|
|
6194
|
-
name: string;
|
|
6195
|
-
url: string;
|
|
6196
|
-
}[];
|
|
6197
|
-
isDeprecated: boolean;
|
|
6198
|
-
methods: {
|
|
6199
|
-
name: string;
|
|
6200
|
-
params: any[];
|
|
6201
|
-
returnType: string;
|
|
6202
|
-
}[];
|
|
6203
|
-
name: string;
|
|
6204
|
-
properties: any[];
|
|
6205
|
-
url: string;
|
|
6206
|
-
};
|
|
6207
|
-
rolistscreenevent: {
|
|
6208
|
-
deprecatedDescription: string;
|
|
6209
|
-
description: string;
|
|
6210
|
-
implementers: {
|
|
6211
|
-
name: string;
|
|
6212
|
-
url: string;
|
|
6213
|
-
}[];
|
|
6214
|
-
isDeprecated: boolean;
|
|
6215
|
-
methods: {
|
|
6216
|
-
name: string;
|
|
6217
|
-
params: any[];
|
|
6218
|
-
returnType: string;
|
|
6219
|
-
}[];
|
|
6220
|
-
name: string;
|
|
6221
|
-
properties: any[];
|
|
6222
|
-
url: string;
|
|
6223
|
-
};
|
|
6224
|
-
romessagedialogevent: {
|
|
6225
|
-
deprecatedDescription: string;
|
|
6226
|
-
description: string;
|
|
6227
|
-
implementers: {
|
|
6228
|
-
name: string;
|
|
6229
|
-
url: string;
|
|
6230
|
-
}[];
|
|
6231
|
-
isDeprecated: boolean;
|
|
6232
|
-
methods: {
|
|
6233
|
-
name: string;
|
|
6234
|
-
params: any[];
|
|
6235
|
-
returnType: string;
|
|
6236
|
-
}[];
|
|
6237
|
-
name: string;
|
|
6238
|
-
properties: any[];
|
|
6239
|
-
url: string;
|
|
6240
|
-
};
|
|
6241
5294
|
romicrophoneevent: {
|
|
6242
5295
|
description: string;
|
|
6243
5296
|
implementers: {
|
|
@@ -6253,91 +5306,6 @@ export declare const events: {
|
|
|
6253
5306
|
properties: any[];
|
|
6254
5307
|
url: string;
|
|
6255
5308
|
};
|
|
6256
|
-
roonelinedialogevent: {
|
|
6257
|
-
deprecatedDescription: string;
|
|
6258
|
-
description: string;
|
|
6259
|
-
implementers: {
|
|
6260
|
-
name: string;
|
|
6261
|
-
url: string;
|
|
6262
|
-
}[];
|
|
6263
|
-
isDeprecated: boolean;
|
|
6264
|
-
methods: {
|
|
6265
|
-
name: string;
|
|
6266
|
-
params: any[];
|
|
6267
|
-
returnType: string;
|
|
6268
|
-
}[];
|
|
6269
|
-
name: string;
|
|
6270
|
-
properties: any[];
|
|
6271
|
-
url: string;
|
|
6272
|
-
};
|
|
6273
|
-
roparagraphscreenevent: {
|
|
6274
|
-
deprecatedDescription: string;
|
|
6275
|
-
description: string;
|
|
6276
|
-
implementers: {
|
|
6277
|
-
name: string;
|
|
6278
|
-
url: string;
|
|
6279
|
-
}[];
|
|
6280
|
-
isDeprecated: boolean;
|
|
6281
|
-
methods: {
|
|
6282
|
-
name: string;
|
|
6283
|
-
params: any[];
|
|
6284
|
-
returnType: string;
|
|
6285
|
-
}[];
|
|
6286
|
-
name: string;
|
|
6287
|
-
properties: any[];
|
|
6288
|
-
url: string;
|
|
6289
|
-
};
|
|
6290
|
-
ropinentrydialogevent: {
|
|
6291
|
-
deprecatedDescription: string;
|
|
6292
|
-
description: string;
|
|
6293
|
-
implementers: {
|
|
6294
|
-
name: string;
|
|
6295
|
-
url: string;
|
|
6296
|
-
}[];
|
|
6297
|
-
isDeprecated: boolean;
|
|
6298
|
-
methods: {
|
|
6299
|
-
name: string;
|
|
6300
|
-
params: any[];
|
|
6301
|
-
returnType: string;
|
|
6302
|
-
}[];
|
|
6303
|
-
name: string;
|
|
6304
|
-
properties: any[];
|
|
6305
|
-
url: string;
|
|
6306
|
-
};
|
|
6307
|
-
roposterscreenevent: {
|
|
6308
|
-
deprecatedDescription: string;
|
|
6309
|
-
description: string;
|
|
6310
|
-
implementers: {
|
|
6311
|
-
name: string;
|
|
6312
|
-
url: string;
|
|
6313
|
-
}[];
|
|
6314
|
-
isDeprecated: boolean;
|
|
6315
|
-
methods: {
|
|
6316
|
-
name: string;
|
|
6317
|
-
params: any[];
|
|
6318
|
-
returnType: string;
|
|
6319
|
-
}[];
|
|
6320
|
-
name: string;
|
|
6321
|
-
properties: any[];
|
|
6322
|
-
url: string;
|
|
6323
|
-
};
|
|
6324
|
-
rosearchscreenevent: {
|
|
6325
|
-
deprecatedDescription: string;
|
|
6326
|
-
description: string;
|
|
6327
|
-
implementers: {
|
|
6328
|
-
name: string;
|
|
6329
|
-
url: string;
|
|
6330
|
-
}[];
|
|
6331
|
-
isDeprecated: boolean;
|
|
6332
|
-
methods: {
|
|
6333
|
-
name: string;
|
|
6334
|
-
params: any[];
|
|
6335
|
-
returnType: string;
|
|
6336
|
-
}[];
|
|
6337
|
-
name: string;
|
|
6338
|
-
properties: any[];
|
|
6339
|
-
url: string;
|
|
6340
|
-
};
|
|
6341
5309
|
rosgnodeevent: {
|
|
6342
5310
|
description: string;
|
|
6343
5311
|
implementers: {
|
|
@@ -6368,23 +5336,6 @@ export declare const events: {
|
|
|
6368
5336
|
properties: any[];
|
|
6369
5337
|
url: string;
|
|
6370
5338
|
};
|
|
6371
|
-
roslideshowevent: {
|
|
6372
|
-
deprecatedDescription: string;
|
|
6373
|
-
description: string;
|
|
6374
|
-
implementers: {
|
|
6375
|
-
name: string;
|
|
6376
|
-
url: string;
|
|
6377
|
-
}[];
|
|
6378
|
-
isDeprecated: boolean;
|
|
6379
|
-
methods: {
|
|
6380
|
-
name: string;
|
|
6381
|
-
params: any[];
|
|
6382
|
-
returnType: string;
|
|
6383
|
-
}[];
|
|
6384
|
-
name: string;
|
|
6385
|
-
properties: any[];
|
|
6386
|
-
url: string;
|
|
6387
|
-
};
|
|
6388
5339
|
rosocketevent: {
|
|
6389
5340
|
description: string;
|
|
6390
5341
|
implementers: {
|
|
@@ -6400,23 +5351,6 @@ export declare const events: {
|
|
|
6400
5351
|
properties: any[];
|
|
6401
5352
|
url: string;
|
|
6402
5353
|
};
|
|
6403
|
-
rospringboardscreenevent: {
|
|
6404
|
-
deprecatedDescription: string;
|
|
6405
|
-
description: string;
|
|
6406
|
-
implementers: {
|
|
6407
|
-
name: string;
|
|
6408
|
-
url: string;
|
|
6409
|
-
}[];
|
|
6410
|
-
isDeprecated: boolean;
|
|
6411
|
-
methods: {
|
|
6412
|
-
name: string;
|
|
6413
|
-
params: any[];
|
|
6414
|
-
returnType: string;
|
|
6415
|
-
}[];
|
|
6416
|
-
name: string;
|
|
6417
|
-
properties: any[];
|
|
6418
|
-
url: string;
|
|
6419
|
-
};
|
|
6420
5354
|
rosystemlogevent: {
|
|
6421
5355
|
description: string;
|
|
6422
5356
|
implementers: any[];
|
|
@@ -6429,23 +5363,6 @@ export declare const events: {
|
|
|
6429
5363
|
properties: any[];
|
|
6430
5364
|
url: string;
|
|
6431
5365
|
};
|
|
6432
|
-
rotextscreenevent: {
|
|
6433
|
-
deprecatedDescription: string;
|
|
6434
|
-
description: string;
|
|
6435
|
-
implementers: {
|
|
6436
|
-
name: string;
|
|
6437
|
-
url: string;
|
|
6438
|
-
}[];
|
|
6439
|
-
isDeprecated: boolean;
|
|
6440
|
-
methods: {
|
|
6441
|
-
name: string;
|
|
6442
|
-
params: any[];
|
|
6443
|
-
returnType: string;
|
|
6444
|
-
}[];
|
|
6445
|
-
name: string;
|
|
6446
|
-
properties: any[];
|
|
6447
|
-
url: string;
|
|
6448
|
-
};
|
|
6449
5366
|
rotexttospeechevent: {
|
|
6450
5367
|
description: string;
|
|
6451
5368
|
implementers: {
|
|
@@ -6521,23 +5438,6 @@ export declare const events: {
|
|
|
6521
5438
|
properties: any[];
|
|
6522
5439
|
url: string;
|
|
6523
5440
|
};
|
|
6524
|
-
rovideoscreenevent: {
|
|
6525
|
-
deprecatedDescription: string;
|
|
6526
|
-
description: string;
|
|
6527
|
-
implementers: {
|
|
6528
|
-
name: string;
|
|
6529
|
-
url: string;
|
|
6530
|
-
}[];
|
|
6531
|
-
isDeprecated: boolean;
|
|
6532
|
-
methods: {
|
|
6533
|
-
name: string;
|
|
6534
|
-
params: any[];
|
|
6535
|
-
returnType: string;
|
|
6536
|
-
}[];
|
|
6537
|
-
name: string;
|
|
6538
|
-
properties: any[];
|
|
6539
|
-
url: string;
|
|
6540
|
-
};
|
|
6541
5441
|
};
|
|
6542
5442
|
interface BrightScriptDocLookup {
|
|
6543
5443
|
name: string;
|
|
@@ -6554,6 +5454,7 @@ export interface BRSBaseMethodData extends PossiblyDeprecated {
|
|
|
6554
5454
|
isRequired: boolean;
|
|
6555
5455
|
type: string;
|
|
6556
5456
|
}[];
|
|
5457
|
+
isVariadic?: boolean;
|
|
6557
5458
|
returnType: string;
|
|
6558
5459
|
}
|
|
6559
5460
|
export interface BRSEventMethodData extends BRSBaseMethodData {
|
|
@@ -6581,6 +5482,8 @@ export interface SGNodeData extends BrightScriptDocLookup {
|
|
|
6581
5482
|
fields: BRSFieldData[];
|
|
6582
5483
|
events: BrightScriptDocLookup[];
|
|
6583
5484
|
interfaces: BrightScriptDocLookup[];
|
|
5485
|
+
extends?: BrightScriptDocLookup;
|
|
5486
|
+
methods?: BRSInterfaceMethodData[];
|
|
6584
5487
|
}
|
|
6585
5488
|
export interface BRSComponentData extends BrightScriptDocLookup, PossiblyDeprecated {
|
|
6586
5489
|
interfaces: BrightScriptDocLookup[];
|