@supernova-studio/pulsar-core 2.0.13 → 2.0.15
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/build/main/core/src/browser-bundle.d.ts +1 -0
- package/build/main/core/src/engine/ExportEngineLegacy.d.ts +17 -0
- package/build/main/core/src/engine/ExportEngineNew.d.ts +12 -0
- package/build/main/core/src/engine/configuration/ExportConfiguration.d.ts +25 -0
- package/build/main/core/src/engine/generation/ExportDataProducer.d.ts +20 -0
- package/build/main/core/src/engine/generation/queue/ExportDataQueue.d.ts +16 -0
- package/build/main/core/src/engine/generation/queue/ExportDataQueueOperation.d.ts +6 -0
- package/build/main/core/src/engine/generation/requests/ExportDataEmittedResponseProducer.d.ts +7 -0
- package/build/main/core/src/engine/generation/requests/ExportDataPrimaryResponseProducer.d.ts +7 -0
- package/build/main/core/src/engine/generation/requests/ExportDataRequest.d.ts +21 -0
- package/build/main/core/src/engine/generation/requests/ExportDataRequestDataStore.d.ts +16 -0
- package/build/main/core/src/engine/generation/requests/ExportDataRequestNameStore.d.ts +22 -0
- package/build/main/core/src/engine/generation/requests/ExportDataRequestProducer.d.ts +23 -0
- package/build/main/core/src/engine/generation/requests/ExportDataResponse.d.ts +15 -0
- package/build/main/core/src/engine/generation/requests/specific/dsm/ExportDataRequestAsset.d.ts +15 -0
- package/build/main/core/src/engine/generation/requests/specific/dsm/ExportDataRequestBlueprint.d.ts +18 -0
- package/build/main/core/src/engine/generation/requests/specific/dsm/ExportDataRequestBundledResource.d.ts +11 -0
- package/build/main/core/src/engine/generation/requests/specific/dsm/ExportDataRequestDSMComponent.d.ts +13 -0
- package/build/main/core/src/engine/generation/requests/specific/dsm/ExportDataRequestDSMComponentGroup.d.ts +13 -0
- package/build/main/core/src/engine/generation/requests/specific/dsm/ExportDataRequestDSMDocumentationPage.d.ts +13 -0
- package/build/main/core/src/engine/generation/requests/specific/dsm/ExportDataRequestDSMGeneric.d.ts +11 -0
- package/build/main/core/src/engine/generation/requests/specific/dsm/ExportDataRequestDSMTheme.d.ts +13 -0
- package/build/main/core/src/engine/generation/requests/specific/dsm/ExportDataRequestDSMTokenGroup.d.ts +13 -0
- package/build/main/core/src/engine/generation/requests/specific/dsm/ExportDataRequestDSMTokenType.d.ts +13 -0
- package/build/main/core/src/engine/items/ExportItemProducer.d.ts +14 -0
- package/build/main/core/src/engine/items/construction/ExportItem.d.ts +10 -0
- package/build/main/core/src/engine/items/construction/ExportItemBuilder.d.ts +9 -0
- package/build/main/core/src/engine/items/queue/ExportItemQueue.d.ts +16 -0
- package/build/main/core/src/engine/items/queue/ExportItemQueueOperation.d.ts +6 -0
- package/build/main/core/src/engine/items/requests/ExportItemRequest.d.ts +16 -0
- package/build/main/core/src/engine/items/requests/ExportItemRequestProducer.d.ts +8 -0
- package/build/main/core/src/engine/items/requests/ExportItemResponse.d.ts +11 -0
- package/build/main/core/src/engine/items/requests/ExportItemResponseProducer.d.ts +7 -0
- package/build/main/core/src/engine/jsruntime/JSExportContext.d.ts +10 -0
- package/build/main/core/src/engine/loaders/BlueprintLoader.d.ts +9 -0
- package/build/main/core/src/engine/writing/queue/ExportWriterQueue.d.ts +16 -0
- package/build/main/core/src/engine/writing/queue/ExportWriterQueueOperation.d.ts +6 -0
- package/build/main/core/src/engine/writing/requests/ExportWriterRequest.d.ts +16 -0
- package/build/main/core/src/engine/writing/requests/ExportWriterRequestProducer.d.ts +8 -0
- package/build/main/core/src/engine/writing/requests/ExportWriterResponse.d.ts +11 -0
- package/build/main/core/src/engine/writing/requests/ExportWriterResponseProducer.d.ts +7 -0
- package/build/main/core/src/engine/writing/writers/ExportItemWriter.d.ts +14 -0
- package/build/main/core/src/engine/writing/writers/ExportWriterRuleProcessor.d.ts +11 -0
- package/build/main/core/src/engine/writing/writers/memory/ExportWriterMemory.d.ts +4 -0
- package/build/main/core/src/engine/writing/writers/memory/ExportWriterMemoryRequest.d.ts +11 -0
- package/build/main/core/src/engine/writing/writers/memory/ExportWriterStore.d.ts +16 -0
- package/build/main/core/src/exports.d.ts +8 -0
- package/build/main/core/src/index.d.ts +1 -0
- package/build/main/core/src/model/assets/ExporterBundledResource.d.ts +6 -0
- package/build/main/core/src/model/dsm/DSMReferenceStore.d.ts +32 -0
- package/build/main/core/src/model/exporters/Exporter.d.ts +125 -0
- package/build/main/core/src/model/exporters/ExporterContribution.d.ts +15 -0
- package/build/main/core/src/model/exporters/ExporterContributionBlock.d.ts +27 -0
- package/build/main/core/src/model/exporters/ExporterContributionBlockProperty.d.ts +16 -0
- package/build/main/core/src/model/exporters/ExporterContributionBlockVariant.d.ts +18 -0
- package/build/main/core/src/model/exporters/ExporterContributionConfiguration.d.ts +12 -0
- package/build/main/core/src/model/exporters/ExporterContributionConfigurationItem.d.ts +40 -0
- package/build/main/core/src/model/exporters/configuration/ExporterConfigurationProperty.d.ts +44 -0
- package/build/main/core/src/model/maps/ExporterMapAsset.d.ts +32 -0
- package/build/main/core/src/model/maps/ExporterMapBlueprint.d.ts +20 -0
- package/build/main/core/src/model/maps/ExporterMapBundledResource.d.ts +12 -0
- package/build/main/core/src/model/sources/ExporterSource.d.ts +25 -0
- package/build/main/core/src/pulsar/Pulsar.d.ts +91 -0
- package/build/main/core/src/pulsar/PulsarInterface.d.ts +117 -0
- package/build/main/core/src/pulsar/PulsarStaticAnalysis.d.ts +16 -0
- package/build/main/core/src/pulsar/PulsarStaticAnalysisInterface.d.ts +13 -0
- package/build/main/core/src/pulsar/managers/PulsarBlueprintManager.d.ts +16 -0
- package/build/main/core/src/pulsar/managers/PulsarCIManager.d.ts +31 -0
- package/build/main/core/src/pulsar/managers/PulsarCodeManager.d.ts +25 -0
- package/build/main/core/src/pulsar/managers/PulsarConfigurationManager.d.ts +6 -0
- package/build/main/core/src/pulsar/managers/PulsarExporterManager.d.ts +7 -0
- package/build/main/core/src/pulsar/managers/generators/PulsarExporterPackageAnalyzer.d.ts +10 -0
- package/build/main/core/src/pulsar/managers/generators/PulsarExporterPackageGenerator.d.ts +7 -0
- package/build/main/core/src/pulsar/managers/generators/PulsarFiles.d.ts +21 -0
- package/build/main/core/src/pulsar/managers/loaders/PulsarExporterPackageBrowserLoader.d.ts +12 -0
- package/build/main/core/src/pulsar/managers/loaders/PulsarExporterPackageFileSystemLoader.d.ts +15 -0
- package/build/main/core/src/pulsar/managers/loaders/PulsarExporterPackageGithubLoader.d.ts +32 -0
- package/build/main/core/src/pulsar/managers/loaders/PulsarExporterPackageLoader.d.ts +10 -0
- package/build/main/core/src/pulsar/managers/loaders/PulsarExporterPackageMemoryLoader.d.ts +14 -0
- package/build/main/core/src/pulsar/managers/loaders/PulsarExporterPackageURLLoader.d.ts +12 -0
- package/build/main/core/src/pulsar/managers/loaders/partials/PulsarExporterAssetLoader.d.ts +13 -0
- package/build/main/core/src/pulsar/managers/loaders/partials/PulsarExporterConfigLoader.d.ts +9 -0
- package/build/main/core/src/pulsar/managers/loaders/partials/PulsarExporterJSLoader.d.ts +9 -0
- package/build/main/core/src/pulsar/managers/loaders/partials/PulsarExporterLocalConfigLoader.d.ts +9 -0
- package/build/main/core/src/pulsar/managers/loaders/partials/PulsarExporterMappingLoader.d.ts +21 -0
- package/build/main/core/src/pulsar/managers/loaders/partials/PulsarExporterObjectLoader.d.ts +6 -0
- package/build/main/core/src/pulsar/managers/loaders/partials/PulsarExporterReadmeLoader.d.ts +9 -0
- package/build/main/core/src/pulsar/managers/loaders/partials/PulsarExporterSourceLoader.d.ts +14 -0
- package/build/main/core/src/pulsar/managers/loaders/support/PulsarExporterUnzipper.d.ts +11 -0
- package/build/main/core/src/pulsar/managers/loaders/support/PulsarPathParser.d.ts +4 -0
- package/build/main/core/src/pulsar/managers/loaders/validators/PulsarExporterConfigurationValidator.d.ts +11 -0
- package/build/main/core/src/pulsar/managers/loaders/validators/PulsarExporterMappingValidator.d.ts +8 -0
- package/build/main/core/src/pulsar/managers/loaders/validators/PulsarExporterObjectValidator.d.ts +10 -0
- package/build/main/core/src/pulsar/managers/loaders/validators/PulsarExporterSourceValidator.d.ts +4 -0
- package/build/main/core/src/pulsar/managers/loaders/validators/PulsarJSONValidator.d.ts +3 -0
- package/build/main/core/src/tests/TestConfiguration.d.ts +10 -0
- package/build/main/core/src/tests/casebuilders/ci.d.ts +12 -0
- package/build/main/core/src/tests/casebuilders/configuration.d.ts +5 -0
- package/build/main/core/src/tests/casebuilders/dsm.d.ts +7 -0
- package/build/main/core/src/tests/casebuilders/modelObjects.d.ts +14 -0
- package/build/main/core/src/tests/complex/TestExporter.spec.d.ts +1 -0
- package/build/main/core/src/tests/dynamic_execution/DynamicExecutionSupport.d.ts +4 -0
- package/build/main/core/src/tests/dynamic_execution/TestConfigurableExecution.spec.d.ts +1 -0
- package/build/main/core/src/tests/dynamic_execution/TestJSConstantExecution.spec.d.ts +1 -0
- package/build/main/core/src/tests/dynamic_execution/TestJSFunctionExecution.spec.d.ts +1 -0
- package/build/main/core/src/tests/dynamic_execution/TestJSTransformerExecution.spec.d.ts +1 -0
- package/build/main/core/src/tests/lib.pulsar/TestPulsarBlueprintManipulation.spec.d.ts +1 -0
- package/build/main/core/src/tests/lib.pulsar/TestPulsarCodeManipulation.spec.d.ts +1 -0
- package/build/main/core/src/tests/lib.pulsar/TestPulsarExporterManipulation.spec.d.ts +1 -0
- package/build/main/core/src/tests/packages/TestGitHubPackageDownloader.spec.d.ts +1 -0
- package/build/main/core/src/tests/packages/TestRemotePackageDownloader.spec.d.ts +1 -0
- package/build/main/core/src/tests/packages/TestZipping.spec.d.ts +1 -0
- package/build/main/core/src/tests/scenarios/TestBrowserScenario.spec.d.ts +1 -0
- package/build/main/core/src/tests/scenarios/TestCIScenario.spec.d.ts +1 -0
- package/build/main/core/src/tools/Logger.d.ts +3 -0
- package/build/main/core/src/tools/LoggerDefaultMessages.d.ts +9 -0
- package/build/main/core/src/tools/Timer.d.ts +14 -0
- package/build/main/language/src/blueprints/Blueprint.d.ts +9 -0
- package/build/main/language/src/blueprints/BlueprintConfiguration.d.ts +17 -0
- package/build/main/language/src/blueprints/BlueprintFactory.d.ts +9 -0
- package/build/main/language/src/configuration/KeywordsFlows.d.ts +23 -0
- package/build/main/language/src/configuration/KeywordsFunctions.d.ts +12 -0
- package/build/main/language/src/configuration/KeywordsTranformers.d.ts +63 -0
- package/build/main/language/src/debugger/Debugger.d.ts +27 -0
- package/build/main/language/src/debugger/DebuggerErrorBuilder.d.ts +14 -0
- package/build/main/language/src/debugger/DebuggerErrors.d.ts +41 -0
- package/build/main/language/src/exports.d.ts +17 -0
- package/build/main/language/src/extensions/dsm/DSMBridge.d.ts +38 -0
- package/build/main/language/src/extensions/dsm/DSMDataCore.d.ts +135 -0
- package/build/main/language/src/extensions/dsm/DSMExecutionContext.d.ts +23 -0
- package/build/main/language/src/extensions/dsm/configuration/DSMKeywordsFunctions.d.ts +52 -0
- package/build/main/language/src/extensions/dsm/functions/assets/DSMFunctionAllAssets.d.ts +10 -0
- package/build/main/language/src/extensions/dsm/functions/assets/DSMFunctionAssetById.d.ts +10 -0
- package/build/main/language/src/extensions/dsm/functions/assets/DSMFunctionAssetsByGroupId.d.ts +10 -0
- package/build/main/language/src/extensions/dsm/functions/brands/DSMFunctionAllBrands.d.ts +10 -0
- package/build/main/language/src/extensions/dsm/functions/brands/DSMFunctionCurrentBrand.d.ts +10 -0
- package/build/main/language/src/extensions/dsm/functions/components/DSMFunctionAllComponents.d.ts +10 -0
- package/build/main/language/src/extensions/dsm/functions/components/DSMFunctionComponentById.d.ts +10 -0
- package/build/main/language/src/extensions/dsm/functions/configuration/DSMFunctionConfiguration.d.ts +10 -0
- package/build/main/language/src/extensions/dsm/functions/configuration/DSMFunctionPackageConfiguration.d.ts +10 -0
- package/build/main/language/src/extensions/dsm/functions/design_components/DSMFunctionAllDesignComponents.d.ts +10 -0
- package/build/main/language/src/extensions/dsm/functions/design_components/DSMFunctionDesignComponentById.d.ts +10 -0
- package/build/main/language/src/extensions/dsm/functions/design_system/DSMFunctionCurrentDesignSystem.d.ts +32 -0
- package/build/main/language/src/extensions/dsm/functions/design_system/DSMFunctionCurrentDesignSystemSwitcher.d.ts +19 -0
- package/build/main/language/src/extensions/dsm/functions/design_system/DSMFunctionDesignSystemById.d.ts +14 -0
- package/build/main/language/src/extensions/dsm/functions/design_system_version/DSMFunctionAllDesignSystemVersions.d.ts +10 -0
- package/build/main/language/src/extensions/dsm/functions/design_system_version/DSMFunctionCurrentDesignSystemVersion.d.ts +28 -0
- package/build/main/language/src/extensions/dsm/functions/documentation/DSMFunctionDocsAllGroups.d.ts +10 -0
- package/build/main/language/src/extensions/dsm/functions/documentation/DSMFunctionDocsAllPages.d.ts +10 -0
- package/build/main/language/src/extensions/dsm/functions/documentation/DSMFunctionDocsConfiguration.d.ts +10 -0
- package/build/main/language/src/extensions/dsm/functions/documentation/DSMFunctionDocsDomain.d.ts +10 -0
- package/build/main/language/src/extensions/dsm/functions/documentation/DSMFunctionDocsGroupById.d.ts +10 -0
- package/build/main/language/src/extensions/dsm/functions/documentation/DSMFunctionDocsPageById.d.ts +10 -0
- package/build/main/language/src/extensions/dsm/functions/documentation/DSMFunctionDocsPageToMarkdown.d.ts +10 -0
- package/build/main/language/src/extensions/dsm/functions/documentation/DSMFunctionDocsRootGroup.d.ts +10 -0
- package/build/main/language/src/extensions/dsm/functions/fonts/DSMFunctionFontIsBold.d.ts +10 -0
- package/build/main/language/src/extensions/dsm/functions/fonts/DSMFunctionFontIsItalic.d.ts +10 -0
- package/build/main/language/src/extensions/dsm/functions/fonts/DSMFunctionFontIsRegular.d.ts +10 -0
- package/build/main/language/src/extensions/dsm/functions/fonts/DSMFunctionFontWeight.d.ts +10 -0
- package/build/main/language/src/extensions/dsm/functions/groups/assets/DSMFunctionAllAssetGroups.d.ts +10 -0
- package/build/main/language/src/extensions/dsm/functions/groups/assets/DSMFunctionAssetGroupById.d.ts +10 -0
- package/build/main/language/src/extensions/dsm/functions/groups/assets/DSMFunctionAssetGroupContainingAssetId.d.ts +10 -0
- package/build/main/language/src/extensions/dsm/functions/groups/assets/DSMFunctionAssetGroupTree.d.ts +10 -0
- package/build/main/language/src/extensions/dsm/functions/groups/tokens/DSMFunctionAllTokenGroupTrees.d.ts +10 -0
- package/build/main/language/src/extensions/dsm/functions/groups/tokens/DSMFunctionAllTokenGroups.d.ts +10 -0
- package/build/main/language/src/extensions/dsm/functions/groups/tokens/DSMFunctionTokenGroupById.d.ts +10 -0
- package/build/main/language/src/extensions/dsm/functions/groups/tokens/DSMFunctionTokenGroupContainingTokenId.d.ts +10 -0
- package/build/main/language/src/extensions/dsm/functions/groups/tokens/DSMFunctionTokenGroupTreeByType.d.ts +10 -0
- package/build/main/language/src/extensions/dsm/functions/groups/tokens/DSMFunctionTokenGroupsByType.d.ts +10 -0
- package/build/main/language/src/extensions/dsm/functions/kvs/DSMFunctionKVSData.d.ts +10 -0
- package/build/main/language/src/extensions/dsm/functions/themes/DSMFunctionAllThemes.d.ts +10 -0
- package/build/main/language/src/extensions/dsm/functions/themes/DSMFunctionCurrentTheme.d.ts +10 -0
- package/build/main/language/src/extensions/dsm/functions/themes/DSMFunctionThemeById.d.ts +10 -0
- package/build/main/language/src/extensions/dsm/functions/tokens/DSMFunctionAllTokens.d.ts +10 -0
- package/build/main/language/src/extensions/dsm/functions/tokens/DSMFunctionAllTokensByApplyingThemes.d.ts +10 -0
- package/build/main/language/src/extensions/dsm/functions/tokens/DSMFunctionTokenById.d.ts +10 -0
- package/build/main/language/src/extensions/dsm/functions/tokens/DSMFunctionTokensByApplyingThemes.d.ts +10 -0
- package/build/main/language/src/extensions/dsm/functions/tokens/DSMFunctionTokensByGroupId.d.ts +10 -0
- package/build/main/language/src/extensions/dsm/functions/tokens/DSMFunctionTokensByType.d.ts +10 -0
- package/build/main/language/src/index.d.ts +1 -0
- package/build/main/language/src/interpreter/ExecutionContext.d.ts +56 -0
- package/build/main/language/src/interpreter/Interpreter.d.ts +33 -0
- package/build/main/language/src/interpreter/InterpreterContext.d.ts +9 -0
- package/build/main/language/src/interpreter/emitters/BlueprintEmitter.d.ts +5 -0
- package/build/main/language/src/interpreter/emitters/EmittedContent.d.ts +6 -0
- package/build/main/language/src/interpreter/emitters/MemoryBlueprintEmitter.d.ts +11 -0
- package/build/main/language/src/interpreter/flows/Flow.d.ts +37 -0
- package/build/main/language/src/interpreter/flows/FlowIterator.d.ts +25 -0
- package/build/main/language/src/interpreter/flows/FlowOutput.d.ts +9 -0
- package/build/main/language/src/interpreter/flows/FlowSource.d.ts +10 -0
- package/build/main/language/src/interpreter/flows/specific/code/FlowCodeMerge.d.ts +16 -0
- package/build/main/language/src/interpreter/flows/specific/debug/FlowLog.d.ts +18 -0
- package/build/main/language/src/interpreter/flows/specific/emit/FlowEmit.d.ts +16 -0
- package/build/main/language/src/interpreter/flows/specific/function/FlowImport.d.ts +16 -0
- package/build/main/language/src/interpreter/flows/specific/function/FlowReturn.d.ts +16 -0
- package/build/main/language/src/interpreter/flows/specific/if/FlowElse.d.ts +19 -0
- package/build/main/language/src/interpreter/flows/specific/if/FlowElseIf.d.ts +20 -0
- package/build/main/language/src/interpreter/flows/specific/if/FlowIf.d.ts +19 -0
- package/build/main/language/src/interpreter/flows/specific/inject/FlowInject.d.ts +16 -0
- package/build/main/language/src/interpreter/flows/specific/loops/FlowFor.d.ts +17 -0
- package/build/main/language/src/interpreter/flows/specific/loops/FlowMap.d.ts +17 -0
- package/build/main/language/src/interpreter/flows/specific/loops/FlowTraverse.d.ts +18 -0
- package/build/main/language/src/interpreter/flows/specific/loops/FlowTraverseChildren.d.ts +6 -0
- package/build/main/language/src/interpreter/flows/specific/switch/FlowCase.d.ts +17 -0
- package/build/main/language/src/interpreter/flows/specific/switch/FlowDefault.d.ts +16 -0
- package/build/main/language/src/interpreter/flows/specific/switch/FlowSwitch.d.ts +17 -0
- package/build/main/language/src/interpreter/flows/specific/var/FlowConst.d.ts +16 -0
- package/build/main/language/src/interpreter/flows/specific/var/FlowGlobal.d.ts +16 -0
- package/build/main/language/src/interpreter/flows/specific/var/FlowLet.d.ts +16 -0
- package/build/main/language/src/interpreter/flows/specific/var/FlowSet.d.ts +16 -0
- package/build/main/language/src/interpreter/functions/Function.d.ts +31 -0
- package/build/main/language/src/interpreter/functions/specific/blueprints/FunctionCall.d.ts +9 -0
- package/build/main/language/src/interpreter/functions/specific/network/FunctionNetworkGetAnonymous.d.ts +11 -0
- package/build/main/language/src/interpreter/functions/specific/random/FunctionRandomInt.d.ts +9 -0
- package/build/main/language/src/interpreter/functions/specific/random/FunctionRandomString.d.ts +9 -0
- package/build/main/language/src/interpreter/functions/specific/support/FunctionArraysToZippedMap.d.ts +9 -0
- package/build/main/language/src/interpreter/functions/specific/support/FunctionVarDefined.d.ts +9 -0
- package/build/main/language/src/interpreter/functions/specific/support/FunctionVarMutable.d.ts +9 -0
- package/build/main/language/src/interpreter/javascript/JSContext.d.ts +18 -0
- package/build/main/language/src/interpreter/javascript/JSContextBridge.d.ts +16 -0
- package/build/main/language/src/interpreter/javascript/JSFunction.d.ts +20 -0
- package/build/main/language/src/interpreter/javascript/JSTransformer.d.ts +30 -0
- package/build/main/language/src/interpreter/loaders/BlueprintLoader.d.ts +12 -0
- package/build/main/language/src/interpreter/loaders/MemoryBlueprintLoader.d.ts +10 -0
- package/build/main/language/src/interpreter/loggers/Logger.d.ts +47 -0
- package/build/main/language/src/interpreter/loggers/LoggerDefaultMessages.d.ts +14 -0
- package/build/main/language/src/interpreter/transformers/Transformer.d.ts +28 -0
- package/build/main/language/src/interpreter/transformers/specific/array/TransformerAppend.d.ts +10 -0
- package/build/main/language/src/interpreter/transformers/specific/array/TransformerConcat.d.ts +10 -0
- package/build/main/language/src/interpreter/transformers/specific/array/TransformerEnumerated.d.ts +10 -0
- package/build/main/language/src/interpreter/transformers/specific/array/TransformerFirst.d.ts +10 -0
- package/build/main/language/src/interpreter/transformers/specific/array/TransformerFrom.d.ts +10 -0
- package/build/main/language/src/interpreter/transformers/specific/array/TransformerJoin.d.ts +10 -0
- package/build/main/language/src/interpreter/transformers/specific/array/TransformerLast.d.ts +10 -0
- package/build/main/language/src/interpreter/transformers/specific/array/TransformerRandom.d.ts +10 -0
- package/build/main/language/src/interpreter/transformers/specific/array/TransformerRange.d.ts +10 -0
- package/build/main/language/src/interpreter/transformers/specific/array/TransformerReversed.d.ts +10 -0
- package/build/main/language/src/interpreter/transformers/specific/array/TransformerShuffled.d.ts +11 -0
- package/build/main/language/src/interpreter/transformers/specific/array/TransformerSorted.d.ts +10 -0
- package/build/main/language/src/interpreter/transformers/specific/array/TransformerUntil.d.ts +10 -0
- package/build/main/language/src/interpreter/transformers/specific/map/TransformerAdd.d.ts +10 -0
- package/build/main/language/src/interpreter/transformers/specific/map/TransformerKeys.d.ts +10 -0
- package/build/main/language/src/interpreter/transformers/specific/map/TransformerValues.d.ts +10 -0
- package/build/main/language/src/interpreter/transformers/specific/numeric/TransformerAbsolute.d.ts +10 -0
- package/build/main/language/src/interpreter/transformers/specific/numeric/TransformerCeiled.d.ts +10 -0
- package/build/main/language/src/interpreter/transformers/specific/numeric/TransformerFloored.d.ts +10 -0
- package/build/main/language/src/interpreter/transformers/specific/numeric/TransformerNegative.d.ts +10 -0
- package/build/main/language/src/interpreter/transformers/specific/numeric/TransformerPositive.d.ts +10 -0
- package/build/main/language/src/interpreter/transformers/specific/numeric/TransformerRounded.d.ts +11 -0
- package/build/main/language/src/interpreter/transformers/specific/shared/TransformerCount.d.ts +12 -0
- package/build/main/language/src/interpreter/transformers/specific/shared/TransformerEquals.d.ts +14 -0
- package/build/main/language/src/interpreter/transformers/specific/shared/TransformerFormatDate.d.ts +13 -0
- package/build/main/language/src/interpreter/transformers/specific/shared/TransformerIsArray.d.ts +14 -0
- package/build/main/language/src/interpreter/transformers/specific/shared/TransformerIsBool.d.ts +14 -0
- package/build/main/language/src/interpreter/transformers/specific/shared/TransformerIsNumber.d.ts +14 -0
- package/build/main/language/src/interpreter/transformers/specific/shared/TransformerIsObject.d.ts +14 -0
- package/build/main/language/src/interpreter/transformers/specific/shared/TransformerIsString.d.ts +14 -0
- package/build/main/language/src/interpreter/transformers/specific/shared/TransformerToString.d.ts +14 -0
- package/build/main/language/src/interpreter/transformers/specific/string/TransformerCamelcased.d.ts +10 -0
- package/build/main/language/src/interpreter/transformers/specific/string/TransformerCapitalized.d.ts +10 -0
- package/build/main/language/src/interpreter/transformers/specific/string/TransformerContains.d.ts +11 -0
- package/build/main/language/src/interpreter/transformers/specific/string/TransformerDefault.d.ts +11 -0
- package/build/main/language/src/interpreter/transformers/specific/string/TransformerEndsWith.d.ts +10 -0
- package/build/main/language/src/interpreter/transformers/specific/string/TransformerExtended.d.ts +10 -0
- package/build/main/language/src/interpreter/transformers/specific/string/TransformerLowercased.d.ts +10 -0
- package/build/main/language/src/interpreter/transformers/specific/string/TransformerPrefixed.d.ts +10 -0
- package/build/main/language/src/interpreter/transformers/specific/string/TransformerReplacing.d.ts +10 -0
- package/build/main/language/src/interpreter/transformers/specific/string/TransformerSlashDoubleQuotes.d.ts +10 -0
- package/build/main/language/src/interpreter/transformers/specific/string/TransformerSlashNewlines.d.ts +10 -0
- package/build/main/language/src/interpreter/transformers/specific/string/TransformerSlashSingleQuotes.d.ts +10 -0
- package/build/main/language/src/interpreter/transformers/specific/string/TransformerSnakecased.d.ts +10 -0
- package/build/main/language/src/interpreter/transformers/specific/string/TransformerSplit.d.ts +10 -0
- package/build/main/language/src/interpreter/transformers/specific/string/TransformerSplitExpr.d.ts +10 -0
- package/build/main/language/src/interpreter/transformers/specific/string/TransformerSplitNewlines.d.ts +10 -0
- package/build/main/language/src/interpreter/transformers/specific/string/TransformerStartsWith.d.ts +10 -0
- package/build/main/language/src/interpreter/transformers/specific/string/TransformerSubstring.d.ts +10 -0
- package/build/main/language/src/interpreter/transformers/specific/string/TransformerSuffixed.d.ts +10 -0
- package/build/main/language/src/interpreter/transformers/specific/string/TransformerTrimmingCharacter.d.ts +11 -0
- package/build/main/language/src/interpreter/transformers/specific/string/TransformerTrimmingSpaces.d.ts +10 -0
- package/build/main/language/src/interpreter/transformers/specific/string/TransformerUppercased.d.ts +10 -0
- package/build/main/language/src/interpreter/variables/Variable.d.ts +22 -0
- package/build/main/language/src/interpreter/variables/VariableContext.d.ts +14 -0
- package/build/main/language/src/parser/Tokenization/Concrete/ConcreteBuffer.d.ts +19 -0
- package/build/main/language/src/parser/Tokenization/Concrete/ConcreteParser.d.ts +25 -0
- package/build/main/language/src/parser/Tokenization/Concrete/ConcreteToken.d.ts +21 -0
- package/build/main/language/src/parser/Tokenization/Lexical/LexicalBuffer.d.ts +22 -0
- package/build/main/language/src/parser/Tokenization/Lexical/LexicalParser.d.ts +14 -0
- package/build/main/language/src/parser/Tokenization/Lexical/LexicalToken.d.ts +24 -0
- package/build/main/language/src/parser/errors/LanguageError.d.ts +5 -0
- package/build/main/language/src/parser/errors/LanguageErrorAnalysis.d.ts +26 -0
- package/build/main/language/src/parser/errors/LoggerErrorUtility.d.ts +8 -0
- package/build/main/language/src/parser/symbols/Symbol.d.ts +29 -0
- package/build/main/language/src/parser/symbols/SymbolBuffer.d.ts +16 -0
- package/build/main/language/src/parser/symbols/SymbolFactory.d.ts +27 -0
- package/build/main/language/src/parser/symbols/SymbolTable.d.ts +22 -0
- package/build/main/language/src/parser/symbols/SymbolType.d.ts +5 -0
- package/build/main/language/src/parser/syntax/SyntaxParser.d.ts +13 -0
- package/build/main/language/src/parser/syntax/SyntaxTree.d.ts +8 -0
- package/build/main/language/src/parser/syntax/nodes/SyntaxNode.d.ts +13 -0
- package/build/main/language/src/parser/syntax/nodes/SyntaxNodeFlow.d.ts +34 -0
- package/build/main/language/src/parser/syntax/nodes/SyntaxNodeGroup.d.ts +17 -0
- package/build/main/language/src/parser/syntax/nodes/SyntaxNodeText.d.ts +16 -0
- package/build/main/language/src/parser/syntax/nodes/substitution/SyntaxNodeSubstitution.d.ts +24 -0
- package/build/main/language/src/parser/syntax/nodes/substitution/SyntaxNodeSubstitutionAnalyzer.d.ts +21 -0
- package/build/main/language/src/parser/syntax/nodes/substitution/interpreters/SyntaxNodeSubstitutionAsyncInterpreter.d.ts +27 -0
- package/build/main/language/src/parser/syntax/nodes/substitution/interpreters/SyntaxNodeSubstitutionInterpreter.d.ts +10 -0
- package/build/main/language/src/parser/syntax/nodes/substitution/interpreters/SyntaxNodeSubstitutionSyncInterpreter.d.ts +25 -0
- package/build/main/language/src/tools/autocomplete/AutocompleteEngine.d.ts +31 -0
- package/build/main/language/src/tools/autocomplete/BlueprintAutocompleteEngine.d.ts +40 -0
- package/build/main/language/src/tools/autocomplete/BlueprintSnippets.d.ts +16 -0
- package/build/main/language/src/tools/autocomplete/PlaceholderDisabledSnippetPool.d.ts +34 -0
- package/build/main/language/src/tools/autocomplete/PlaceholderEnabledSnippetPool.d.ts +35 -0
- package/build/main/language/src/tools/documentation/DeclarationBuilder.d.ts +8 -0
- package/build/main/language/src/tools/documentation/Doc.d.ts +30 -0
- package/build/main/language/src/tools/documentation/Documentable.d.ts +4 -0
- package/build/main/language/src/tools/highlight/BlueprintHighlightEngine.d.ts +51 -0
- package/build/main/language/src/tools/highlight/BlueprintHighlightEngineState.d.ts +41 -0
- package/build/main/language/src/tools/highlight/HighlightEngine.d.ts +44 -0
- package/build/main/language/src/utils/FlowUtils.d.ts +5 -0
- package/build/main/language/src/utils/StringUtils.d.ts +72 -0
- package/package.json +5 -2
- package/images/image.png +0 -0
- package/scripts/travis-npm-publish.sh +0 -4
- package/shims/tmp-promise.js +0 -2
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { DSMExecutionContext } from '../../DSMExecutionContext';
|
|
2
|
+
import { PLInterpreterContext } from '../../../../interpreter/InterpreterContext';
|
|
3
|
+
import { PLFunction, PLFunctionType } from '../../../../interpreter/functions/Function';
|
|
4
|
+
export declare class DSMFunctionCurrentBrand extends PLFunction {
|
|
5
|
+
numberOfArguments(): number;
|
|
6
|
+
keyword(): string;
|
|
7
|
+
type(): PLFunctionType;
|
|
8
|
+
isAsync(): boolean;
|
|
9
|
+
provideValueUsingArguments(args: Array<any>, context: PLInterpreterContext, executionContext: DSMExecutionContext): Promise<any | null>;
|
|
10
|
+
}
|
package/build/main/language/src/extensions/dsm/functions/components/DSMFunctionAllComponents.d.ts
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { DSMExecutionContext } from '../../DSMExecutionContext';
|
|
2
|
+
import { PLInterpreterContext } from '../../../../interpreter/InterpreterContext';
|
|
3
|
+
import { PLFunction, PLFunctionType } from '../../../../interpreter/functions/Function';
|
|
4
|
+
export declare class DSMFunctionAllComponents extends PLFunction {
|
|
5
|
+
numberOfArguments(): number;
|
|
6
|
+
keyword(): string;
|
|
7
|
+
type(): PLFunctionType;
|
|
8
|
+
isAsync(): boolean;
|
|
9
|
+
provideValueUsingArguments(args: Array<any>, context: PLInterpreterContext, executionContext: DSMExecutionContext): Promise<any | null>;
|
|
10
|
+
}
|
package/build/main/language/src/extensions/dsm/functions/components/DSMFunctionComponentById.d.ts
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { DSMExecutionContext } from '../../DSMExecutionContext';
|
|
2
|
+
import { PLInterpreterContext } from '../../../../interpreter/InterpreterContext';
|
|
3
|
+
import { PLFunction, PLFunctionType } from '../../../../interpreter/functions/Function';
|
|
4
|
+
export declare class DSMFunctionComponentById extends PLFunction {
|
|
5
|
+
numberOfArguments(): number;
|
|
6
|
+
keyword(): string;
|
|
7
|
+
type(): PLFunctionType;
|
|
8
|
+
isAsync(): boolean;
|
|
9
|
+
provideValueUsingArguments(args: Array<any>, context: PLInterpreterContext, executionContext: DSMExecutionContext): Promise<any | null>;
|
|
10
|
+
}
|
package/build/main/language/src/extensions/dsm/functions/configuration/DSMFunctionConfiguration.d.ts
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { DSMExecutionContext } from '../../DSMExecutionContext';
|
|
2
|
+
import { PLInterpreterContext } from '../../../../interpreter/InterpreterContext';
|
|
3
|
+
import { PLFunction, PLFunctionType } from '../../../../interpreter/functions/Function';
|
|
4
|
+
export declare class DSMFunctionConfiguration extends PLFunction {
|
|
5
|
+
numberOfArguments(): number;
|
|
6
|
+
keyword(): string;
|
|
7
|
+
type(): PLFunctionType;
|
|
8
|
+
isAsync(): boolean;
|
|
9
|
+
provideValueUsingArgumentsSync(_args: Array<any>, _context: PLInterpreterContext, executionContext: DSMExecutionContext): any | null;
|
|
10
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { DSMExecutionContext } from '../../DSMExecutionContext';
|
|
2
|
+
import { PLInterpreterContext } from '../../../../interpreter/InterpreterContext';
|
|
3
|
+
import { PLFunction, PLFunctionType } from '../../../../interpreter/functions/Function';
|
|
4
|
+
export declare class DSMFunctionPackageConfiguration extends PLFunction {
|
|
5
|
+
numberOfArguments(): number;
|
|
6
|
+
keyword(): string;
|
|
7
|
+
type(): PLFunctionType;
|
|
8
|
+
isAsync(): boolean;
|
|
9
|
+
provideValueUsingArgumentsSync(_args: Array<any>, _context: PLInterpreterContext, executionContext: DSMExecutionContext): any | null;
|
|
10
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { DSMExecutionContext } from '../../DSMExecutionContext';
|
|
2
|
+
import { PLInterpreterContext } from '../../../../interpreter/InterpreterContext';
|
|
3
|
+
import { PLFunction, PLFunctionType } from '../../../../interpreter/functions/Function';
|
|
4
|
+
export declare class DSMFunctionAllDesignComponents extends PLFunction {
|
|
5
|
+
numberOfArguments(): number;
|
|
6
|
+
keyword(): string;
|
|
7
|
+
type(): PLFunctionType;
|
|
8
|
+
isAsync(): boolean;
|
|
9
|
+
provideValueUsingArguments(args: Array<any>, context: PLInterpreterContext, executionContext: DSMExecutionContext): Promise<any | null>;
|
|
10
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { DSMExecutionContext } from '../../DSMExecutionContext';
|
|
2
|
+
import { PLInterpreterContext } from '../../../../interpreter/InterpreterContext';
|
|
3
|
+
import { PLFunction, PLFunctionType } from '../../../../interpreter/functions/Function';
|
|
4
|
+
export declare class DSMFunctionDesignComponentById extends PLFunction {
|
|
5
|
+
numberOfArguments(): number;
|
|
6
|
+
keyword(): string;
|
|
7
|
+
type(): PLFunctionType;
|
|
8
|
+
isAsync(): boolean;
|
|
9
|
+
provideValueUsingArguments(args: Array<any>, context: PLInterpreterContext, executionContext: DSMExecutionContext): Promise<any | null>;
|
|
10
|
+
}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import { DSMExecutionContext } from '../../DSMExecutionContext';
|
|
2
|
+
import { PLInterpreterContext } from '../../../../interpreter/InterpreterContext';
|
|
3
|
+
import { PLFunction, PLFunctionType } from '../../../../interpreter/functions/Function';
|
|
4
|
+
import { DesignSystem } from '@supernovaio/supernova-sdk';
|
|
5
|
+
export declare type DesignSystemLightweight = {
|
|
6
|
+
/** Unique identifier of design system */
|
|
7
|
+
id: string;
|
|
8
|
+
/** Unique identifier of associated workspace */
|
|
9
|
+
workspaceId: string;
|
|
10
|
+
/** Design system name */
|
|
11
|
+
name: string;
|
|
12
|
+
/** Design system description */
|
|
13
|
+
description: string;
|
|
14
|
+
/** If enabled, parts of the design system can be accessed by public (for example, documentation site) */
|
|
15
|
+
isPublic: boolean;
|
|
16
|
+
/** If set, signals that multibrand functionality is enabled for this design system */
|
|
17
|
+
isMultiBrand: boolean;
|
|
18
|
+
/** Design system switcher functionality - array of design systems bound together */
|
|
19
|
+
designSystemSwitcher: {
|
|
20
|
+
isEnabled: boolean;
|
|
21
|
+
designSystemIds: Array<string>;
|
|
22
|
+
};
|
|
23
|
+
};
|
|
24
|
+
export declare class DSMFunctionCurrentDesignSystem extends PLFunction {
|
|
25
|
+
numberOfArguments(): number;
|
|
26
|
+
keyword(): string;
|
|
27
|
+
type(): PLFunctionType;
|
|
28
|
+
isAsync(): boolean;
|
|
29
|
+
currentDesignSystem: DesignSystemLightweight | null;
|
|
30
|
+
provideValueUsingArguments(args: Array<any>, context: PLInterpreterContext, executionContext: DSMExecutionContext): Promise<any | null>;
|
|
31
|
+
static designSystemToLightweightObject(ds: DesignSystem): DesignSystemLightweight;
|
|
32
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { DSMExecutionContext } from '../../DSMExecutionContext';
|
|
2
|
+
import { PLInterpreterContext } from '../../../../interpreter/InterpreterContext';
|
|
3
|
+
import { PLFunction, PLFunctionType } from '../../../../interpreter/functions/Function';
|
|
4
|
+
export declare type ResolvedDesignSystemSwitcher = {
|
|
5
|
+
isEnabled: boolean;
|
|
6
|
+
designSystems: {
|
|
7
|
+
id: string;
|
|
8
|
+
name: string;
|
|
9
|
+
isCurrent: boolean;
|
|
10
|
+
}[];
|
|
11
|
+
};
|
|
12
|
+
export declare class DSMFunctionCurrentDesignSystemSwitcher extends PLFunction {
|
|
13
|
+
numberOfArguments(): number;
|
|
14
|
+
keyword(): string;
|
|
15
|
+
type(): PLFunctionType;
|
|
16
|
+
isAsync(): boolean;
|
|
17
|
+
currentDesignSystemSwitcher: ResolvedDesignSystemSwitcher | null;
|
|
18
|
+
provideValueUsingArguments(args: Array<any>, context: PLInterpreterContext, executionContext: DSMExecutionContext): Promise<any | null>;
|
|
19
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { DSMExecutionContext } from '../../DSMExecutionContext';
|
|
2
|
+
import { PLInterpreterContext } from '../../../../interpreter/InterpreterContext';
|
|
3
|
+
import { PLFunction, PLFunctionType } from '../../../../interpreter/functions/Function';
|
|
4
|
+
import { DesignSystem } from '@supernovaio/supernova-sdk';
|
|
5
|
+
import { DesignSystemLightweight } from './DSMFunctionCurrentDesignSystem';
|
|
6
|
+
export declare class DSMFunctionDesignSystemById extends PLFunction {
|
|
7
|
+
numberOfArguments(): number;
|
|
8
|
+
keyword(): string;
|
|
9
|
+
type(): PLFunctionType;
|
|
10
|
+
isAsync(): boolean;
|
|
11
|
+
currentDesignSystems: Array<DesignSystemLightweight> | null;
|
|
12
|
+
provideValueUsingArguments(args: Array<any>, context: PLInterpreterContext, executionContext: DSMExecutionContext): Promise<any | null>;
|
|
13
|
+
static designSystemToLightweightObject(ds: DesignSystem): DesignSystemLightweight;
|
|
14
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { DSMExecutionContext } from '../../DSMExecutionContext';
|
|
2
|
+
import { PLInterpreterContext } from '../../../../interpreter/InterpreterContext';
|
|
3
|
+
import { PLFunction, PLFunctionType } from '../../../../interpreter/functions/Function';
|
|
4
|
+
export declare class DSMFunctionAllDesignSystemVersions extends PLFunction {
|
|
5
|
+
numberOfArguments(): number;
|
|
6
|
+
keyword(): string;
|
|
7
|
+
type(): PLFunctionType;
|
|
8
|
+
isAsync(): boolean;
|
|
9
|
+
provideValueUsingArguments(args: Array<any>, context: PLInterpreterContext, executionContext: DSMExecutionContext): Promise<any | null>;
|
|
10
|
+
}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { DSMExecutionContext } from '../../DSMExecutionContext';
|
|
2
|
+
import { PLInterpreterContext } from '../../../../interpreter/InterpreterContext';
|
|
3
|
+
import { PLFunction, PLFunctionType } from '../../../../interpreter/functions/Function';
|
|
4
|
+
import { DesignSystemVersion } from '@supernovaio/supernova-sdk';
|
|
5
|
+
export declare type DesignSystemVersionLightweight = {
|
|
6
|
+
/** Unique identifier of design system version */
|
|
7
|
+
id: string;
|
|
8
|
+
/** Design system version name */
|
|
9
|
+
name: string;
|
|
10
|
+
/** Design system version description */
|
|
11
|
+
description: string;
|
|
12
|
+
/** Semantic name of version. Will be null if the version is in draft mode */
|
|
13
|
+
version: string | null;
|
|
14
|
+
/** Change log for the version. Will be null if the version is in draft mode */
|
|
15
|
+
changeLog: string | null;
|
|
16
|
+
/** If version is in read-only mode, it can't be modified - only documentation that can be improved */
|
|
17
|
+
isReadOnly: boolean;
|
|
18
|
+
/** Only one version per design system ever can be shared draft. Shared draft is always writable */
|
|
19
|
+
isSharedDraft: boolean;
|
|
20
|
+
};
|
|
21
|
+
export declare class DSMFunctionCurrentDesignSystemVersion extends PLFunction {
|
|
22
|
+
numberOfArguments(): number;
|
|
23
|
+
keyword(): string;
|
|
24
|
+
type(): PLFunctionType;
|
|
25
|
+
isAsync(): boolean;
|
|
26
|
+
provideValueUsingArguments(args: Array<any>, context: PLInterpreterContext, executionContext: DSMExecutionContext): Promise<any | null>;
|
|
27
|
+
static versionToLightweightObject(version: DesignSystemVersion): DesignSystemVersionLightweight;
|
|
28
|
+
}
|
package/build/main/language/src/extensions/dsm/functions/documentation/DSMFunctionDocsAllGroups.d.ts
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { DSMExecutionContext } from '../../DSMExecutionContext';
|
|
2
|
+
import { PLInterpreterContext } from '../../../../interpreter/InterpreterContext';
|
|
3
|
+
import { PLFunction, PLFunctionType } from '../../../../interpreter/functions/Function';
|
|
4
|
+
export declare class DSMFunctionDocsAllGroups extends PLFunction {
|
|
5
|
+
numberOfArguments(): number;
|
|
6
|
+
keyword(): string;
|
|
7
|
+
type(): PLFunctionType;
|
|
8
|
+
isAsync(): boolean;
|
|
9
|
+
provideValueUsingArguments(args: Array<any>, context: PLInterpreterContext, executionContext: DSMExecutionContext): Promise<any | null>;
|
|
10
|
+
}
|
package/build/main/language/src/extensions/dsm/functions/documentation/DSMFunctionDocsAllPages.d.ts
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { DSMExecutionContext } from '../../DSMExecutionContext';
|
|
2
|
+
import { PLInterpreterContext } from '../../../../interpreter/InterpreterContext';
|
|
3
|
+
import { PLFunction, PLFunctionType } from '../../../../interpreter/functions/Function';
|
|
4
|
+
export declare class DSMFunctionDocsAllPages extends PLFunction {
|
|
5
|
+
numberOfArguments(): number;
|
|
6
|
+
keyword(): string;
|
|
7
|
+
type(): PLFunctionType;
|
|
8
|
+
isAsync(): boolean;
|
|
9
|
+
provideValueUsingArguments(args: Array<any>, context: PLInterpreterContext, executionContext: DSMExecutionContext): Promise<any | null>;
|
|
10
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { DSMExecutionContext } from '../../DSMExecutionContext';
|
|
2
|
+
import { PLInterpreterContext } from '../../../../interpreter/InterpreterContext';
|
|
3
|
+
import { PLFunction, PLFunctionType } from '../../../../interpreter/functions/Function';
|
|
4
|
+
export declare class DSMFunctionDocsConfiguration extends PLFunction {
|
|
5
|
+
numberOfArguments(): number;
|
|
6
|
+
keyword(): string;
|
|
7
|
+
type(): PLFunctionType;
|
|
8
|
+
isAsync(): boolean;
|
|
9
|
+
provideValueUsingArguments(_args: Array<any>, _context: PLInterpreterContext, executionContext: DSMExecutionContext): Promise<any | null>;
|
|
10
|
+
}
|
package/build/main/language/src/extensions/dsm/functions/documentation/DSMFunctionDocsDomain.d.ts
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { DSMExecutionContext } from '../../DSMExecutionContext';
|
|
2
|
+
import { PLInterpreterContext } from '../../../../interpreter/InterpreterContext';
|
|
3
|
+
import { PLFunction, PLFunctionType } from '../../../../interpreter/functions/Function';
|
|
4
|
+
export declare class DSMFunctionDocsDomain extends PLFunction {
|
|
5
|
+
numberOfArguments(): number;
|
|
6
|
+
keyword(): string;
|
|
7
|
+
type(): PLFunctionType;
|
|
8
|
+
isAsync(): boolean;
|
|
9
|
+
provideValueUsingArguments(args: Array<any>, context: PLInterpreterContext, executionContext: DSMExecutionContext): Promise<any | null>;
|
|
10
|
+
}
|
package/build/main/language/src/extensions/dsm/functions/documentation/DSMFunctionDocsGroupById.d.ts
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { DSMExecutionContext } from '../../DSMExecutionContext';
|
|
2
|
+
import { PLInterpreterContext } from '../../../../interpreter/InterpreterContext';
|
|
3
|
+
import { PLFunction, PLFunctionType } from '../../../../interpreter/functions/Function';
|
|
4
|
+
export declare class DSMFunctionDocsGroupById extends PLFunction {
|
|
5
|
+
numberOfArguments(): number;
|
|
6
|
+
keyword(): string;
|
|
7
|
+
type(): PLFunctionType;
|
|
8
|
+
isAsync(): boolean;
|
|
9
|
+
provideValueUsingArguments(args: Array<any>, context: PLInterpreterContext, executionContext: DSMExecutionContext): Promise<any | null>;
|
|
10
|
+
}
|
package/build/main/language/src/extensions/dsm/functions/documentation/DSMFunctionDocsPageById.d.ts
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { DSMExecutionContext } from '../../DSMExecutionContext';
|
|
2
|
+
import { PLInterpreterContext } from '../../../../interpreter/InterpreterContext';
|
|
3
|
+
import { PLFunction, PLFunctionType } from '../../../../interpreter/functions/Function';
|
|
4
|
+
export declare class DSMFunctionDocsPageById extends PLFunction {
|
|
5
|
+
numberOfArguments(): number;
|
|
6
|
+
keyword(): string;
|
|
7
|
+
type(): PLFunctionType;
|
|
8
|
+
isAsync(): boolean;
|
|
9
|
+
provideValueUsingArguments(args: Array<any>, context: PLInterpreterContext, executionContext: DSMExecutionContext): Promise<any | null>;
|
|
10
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { DSMExecutionContext } from '../../DSMExecutionContext';
|
|
2
|
+
import { PLInterpreterContext } from '../../../../interpreter/InterpreterContext';
|
|
3
|
+
import { PLFunction, PLFunctionType } from '../../../../interpreter/functions/Function';
|
|
4
|
+
export declare class DSMFunctionDocsPageToMarkdown extends PLFunction {
|
|
5
|
+
numberOfArguments(): number;
|
|
6
|
+
keyword(): string;
|
|
7
|
+
type(): PLFunctionType;
|
|
8
|
+
isAsync(): boolean;
|
|
9
|
+
provideValueUsingArguments(args: Array<any>, context: PLInterpreterContext, executionContext: DSMExecutionContext): Promise<any | null>;
|
|
10
|
+
}
|
package/build/main/language/src/extensions/dsm/functions/documentation/DSMFunctionDocsRootGroup.d.ts
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { DSMExecutionContext } from '../../DSMExecutionContext';
|
|
2
|
+
import { PLInterpreterContext } from '../../../../interpreter/InterpreterContext';
|
|
3
|
+
import { PLFunction, PLFunctionType } from '../../../../interpreter/functions/Function';
|
|
4
|
+
export declare class DSMFunctionDocsRootGroup extends PLFunction {
|
|
5
|
+
numberOfArguments(): number;
|
|
6
|
+
keyword(): string;
|
|
7
|
+
type(): PLFunctionType;
|
|
8
|
+
isAsync(): boolean;
|
|
9
|
+
provideValueUsingArguments(args: Array<any>, context: PLInterpreterContext, executionContext: DSMExecutionContext): Promise<any | null>;
|
|
10
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { DSMExecutionContext } from '../../DSMExecutionContext';
|
|
2
|
+
import { PLInterpreterContext } from '../../../../interpreter/InterpreterContext';
|
|
3
|
+
import { PLFunction, PLFunctionType } from '../../../../interpreter/functions/Function';
|
|
4
|
+
export declare class DSMFunctionFontIsBold extends PLFunction {
|
|
5
|
+
numberOfArguments(): number;
|
|
6
|
+
keyword(): string;
|
|
7
|
+
type(): PLFunctionType;
|
|
8
|
+
isAsync(): boolean;
|
|
9
|
+
provideValueUsingArguments(args: Array<any>, context: PLInterpreterContext, executionContext: DSMExecutionContext): Promise<any | null>;
|
|
10
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { DSMExecutionContext } from '../../DSMExecutionContext';
|
|
2
|
+
import { PLInterpreterContext } from '../../../../interpreter/InterpreterContext';
|
|
3
|
+
import { PLFunction, PLFunctionType } from '../../../../interpreter/functions/Function';
|
|
4
|
+
export declare class DSMFunctionFontIsItalic extends PLFunction {
|
|
5
|
+
numberOfArguments(): number;
|
|
6
|
+
keyword(): string;
|
|
7
|
+
type(): PLFunctionType;
|
|
8
|
+
isAsync(): boolean;
|
|
9
|
+
provideValueUsingArguments(args: Array<any>, context: PLInterpreterContext, executionContext: DSMExecutionContext): Promise<any | null>;
|
|
10
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { DSMExecutionContext } from '../../DSMExecutionContext';
|
|
2
|
+
import { PLInterpreterContext } from '../../../../interpreter/InterpreterContext';
|
|
3
|
+
import { PLFunction, PLFunctionType } from '../../../../interpreter/functions/Function';
|
|
4
|
+
export declare class DSMFunctionFontIsRegular extends PLFunction {
|
|
5
|
+
numberOfArguments(): number;
|
|
6
|
+
keyword(): string;
|
|
7
|
+
type(): PLFunctionType;
|
|
8
|
+
isAsync(): boolean;
|
|
9
|
+
provideValueUsingArguments(args: Array<any>, context: PLInterpreterContext, executionContext: DSMExecutionContext): Promise<any | null>;
|
|
10
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { DSMExecutionContext } from '../../DSMExecutionContext';
|
|
2
|
+
import { PLInterpreterContext } from '../../../../interpreter/InterpreterContext';
|
|
3
|
+
import { PLFunction, PLFunctionType } from '../../../../interpreter/functions/Function';
|
|
4
|
+
export declare class DSMFunctionFontWeight extends PLFunction {
|
|
5
|
+
numberOfArguments(): number;
|
|
6
|
+
keyword(): string;
|
|
7
|
+
type(): PLFunctionType;
|
|
8
|
+
isAsync(): boolean;
|
|
9
|
+
provideValueUsingArguments(args: Array<any>, context: PLInterpreterContext, executionContext: DSMExecutionContext): Promise<any | null>;
|
|
10
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { DSMExecutionContext } from '../../../DSMExecutionContext';
|
|
2
|
+
import { PLInterpreterContext } from '../../../../../interpreter/InterpreterContext';
|
|
3
|
+
import { PLFunction, PLFunctionType } from '../../../../../interpreter/functions/Function';
|
|
4
|
+
export declare class DSMFunctionAllAssetGroups extends PLFunction {
|
|
5
|
+
numberOfArguments(): number;
|
|
6
|
+
keyword(): string;
|
|
7
|
+
type(): PLFunctionType;
|
|
8
|
+
isAsync(): boolean;
|
|
9
|
+
provideValueUsingArguments(args: Array<any>, context: PLInterpreterContext, executionContext: DSMExecutionContext): Promise<any | null>;
|
|
10
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { DSMExecutionContext } from '../../../DSMExecutionContext';
|
|
2
|
+
import { PLInterpreterContext } from '../../../../../interpreter/InterpreterContext';
|
|
3
|
+
import { PLFunction, PLFunctionType } from '../../../../../interpreter/functions/Function';
|
|
4
|
+
export declare class DSMFunctionAssetGroupById extends PLFunction {
|
|
5
|
+
numberOfArguments(): number;
|
|
6
|
+
keyword(): string;
|
|
7
|
+
type(): PLFunctionType;
|
|
8
|
+
isAsync(): boolean;
|
|
9
|
+
provideValueUsingArguments(args: Array<any>, context: PLInterpreterContext, executionContext: DSMExecutionContext): Promise<any | null>;
|
|
10
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { DSMExecutionContext } from '../../../DSMExecutionContext';
|
|
2
|
+
import { PLInterpreterContext } from '../../../../../interpreter/InterpreterContext';
|
|
3
|
+
import { PLFunction, PLFunctionType } from '../../../../../interpreter/functions/Function';
|
|
4
|
+
export declare class DSMFunctionAssetGroupContainingAssetId extends PLFunction {
|
|
5
|
+
numberOfArguments(): number;
|
|
6
|
+
keyword(): string;
|
|
7
|
+
type(): PLFunctionType;
|
|
8
|
+
isAsync(): boolean;
|
|
9
|
+
provideValueUsingArguments(args: Array<any>, context: PLInterpreterContext, executionContext: DSMExecutionContext): Promise<any | null>;
|
|
10
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { DSMExecutionContext } from '../../../DSMExecutionContext';
|
|
2
|
+
import { PLInterpreterContext } from '../../../../../interpreter/InterpreterContext';
|
|
3
|
+
import { PLFunction, PLFunctionType } from '../../../../../interpreter/functions/Function';
|
|
4
|
+
export declare class DSMFunctionAssetGroupTree extends PLFunction {
|
|
5
|
+
numberOfArguments(): number;
|
|
6
|
+
keyword(): string;
|
|
7
|
+
type(): PLFunctionType;
|
|
8
|
+
isAsync(): boolean;
|
|
9
|
+
provideValueUsingArguments(args: Array<any>, context: PLInterpreterContext, executionContext: DSMExecutionContext): Promise<any | null>;
|
|
10
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { DSMExecutionContext } from '../../../DSMExecutionContext';
|
|
2
|
+
import { PLInterpreterContext } from '../../../../../interpreter/InterpreterContext';
|
|
3
|
+
import { PLFunction, PLFunctionType } from '../../../../../interpreter/functions/Function';
|
|
4
|
+
export declare class DSMFunctionAllTokenGroupTrees extends PLFunction {
|
|
5
|
+
numberOfArguments(): number;
|
|
6
|
+
keyword(): string;
|
|
7
|
+
type(): PLFunctionType;
|
|
8
|
+
isAsync(): boolean;
|
|
9
|
+
provideValueUsingArguments(args: Array<any>, context: PLInterpreterContext, executionContext: DSMExecutionContext): Promise<any | null>;
|
|
10
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { DSMExecutionContext } from '../../../DSMExecutionContext';
|
|
2
|
+
import { PLInterpreterContext } from '../../../../../interpreter/InterpreterContext';
|
|
3
|
+
import { PLFunction, PLFunctionType } from '../../../../../interpreter/functions/Function';
|
|
4
|
+
export declare class DSMFunctionAllTokenGroups extends PLFunction {
|
|
5
|
+
numberOfArguments(): number;
|
|
6
|
+
keyword(): string;
|
|
7
|
+
type(): PLFunctionType;
|
|
8
|
+
isAsync(): boolean;
|
|
9
|
+
provideValueUsingArguments(args: Array<any>, context: PLInterpreterContext, executionContext: DSMExecutionContext): Promise<any | null>;
|
|
10
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { DSMExecutionContext } from '../../../DSMExecutionContext';
|
|
2
|
+
import { PLInterpreterContext } from '../../../../../interpreter/InterpreterContext';
|
|
3
|
+
import { PLFunction, PLFunctionType } from '../../../../../interpreter/functions/Function';
|
|
4
|
+
export declare class DSMFunctionTokenGroupById extends PLFunction {
|
|
5
|
+
numberOfArguments(): number;
|
|
6
|
+
keyword(): string;
|
|
7
|
+
type(): PLFunctionType;
|
|
8
|
+
isAsync(): boolean;
|
|
9
|
+
provideValueUsingArguments(args: Array<any>, context: PLInterpreterContext, executionContext: DSMExecutionContext): Promise<any | null>;
|
|
10
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { DSMExecutionContext } from '../../../DSMExecutionContext';
|
|
2
|
+
import { PLInterpreterContext } from '../../../../../interpreter/InterpreterContext';
|
|
3
|
+
import { PLFunction, PLFunctionType } from '../../../../../interpreter/functions/Function';
|
|
4
|
+
export declare class DSMFunctionTokenGroupContainingTokenId extends PLFunction {
|
|
5
|
+
numberOfArguments(): number;
|
|
6
|
+
keyword(): string;
|
|
7
|
+
type(): PLFunctionType;
|
|
8
|
+
isAsync(): boolean;
|
|
9
|
+
provideValueUsingArguments(args: Array<any>, context: PLInterpreterContext, executionContext: DSMExecutionContext): Promise<any | null>;
|
|
10
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { DSMExecutionContext } from '../../../DSMExecutionContext';
|
|
2
|
+
import { PLInterpreterContext } from '../../../../../interpreter/InterpreterContext';
|
|
3
|
+
import { PLFunction, PLFunctionType } from '../../../../../interpreter/functions/Function';
|
|
4
|
+
export declare class DSMFunctionTokenGroupTreeByType extends PLFunction {
|
|
5
|
+
numberOfArguments(): number;
|
|
6
|
+
keyword(): string;
|
|
7
|
+
type(): PLFunctionType;
|
|
8
|
+
isAsync(): boolean;
|
|
9
|
+
provideValueUsingArguments(args: Array<any>, context: PLInterpreterContext, executionContext: DSMExecutionContext): Promise<any | null>;
|
|
10
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { DSMExecutionContext } from '../../../DSMExecutionContext';
|
|
2
|
+
import { PLInterpreterContext } from '../../../../../interpreter/InterpreterContext';
|
|
3
|
+
import { PLFunction, PLFunctionType } from '../../../../../interpreter/functions/Function';
|
|
4
|
+
export declare class DSMFunctionTokenGroupsByType extends PLFunction {
|
|
5
|
+
numberOfArguments(): number;
|
|
6
|
+
keyword(): string;
|
|
7
|
+
type(): PLFunctionType;
|
|
8
|
+
isAsync(): boolean;
|
|
9
|
+
provideValueUsingArguments(args: Array<any>, context: PLInterpreterContext, executionContext: DSMExecutionContext): Promise<any | null>;
|
|
10
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { DSMExecutionContext } from '../../DSMExecutionContext';
|
|
2
|
+
import { PLInterpreterContext } from '../../../../interpreter/InterpreterContext';
|
|
3
|
+
import { PLFunction, PLFunctionType } from '../../../../interpreter/functions/Function';
|
|
4
|
+
export declare class DSMFunctionKVSData extends PLFunction {
|
|
5
|
+
numberOfArguments(): number;
|
|
6
|
+
keyword(): string;
|
|
7
|
+
type(): PLFunctionType;
|
|
8
|
+
isAsync(): boolean;
|
|
9
|
+
provideValueUsingArguments(args: Array<any>, context: PLInterpreterContext, executionContext: DSMExecutionContext): Promise<any | null>;
|
|
10
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { DSMExecutionContext } from '../../DSMExecutionContext';
|
|
2
|
+
import { PLInterpreterContext } from '../../../../interpreter/InterpreterContext';
|
|
3
|
+
import { PLFunction, PLFunctionType } from '../../../../interpreter/functions/Function';
|
|
4
|
+
export declare class DSMFunctionAllThemes extends PLFunction {
|
|
5
|
+
numberOfArguments(): number;
|
|
6
|
+
keyword(): string;
|
|
7
|
+
type(): PLFunctionType;
|
|
8
|
+
isAsync(): boolean;
|
|
9
|
+
provideValueUsingArguments(args: Array<any>, context: PLInterpreterContext, executionContext: DSMExecutionContext): Promise<any | null>;
|
|
10
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { DSMExecutionContext } from '../../DSMExecutionContext';
|
|
2
|
+
import { PLInterpreterContext } from '../../../../interpreter/InterpreterContext';
|
|
3
|
+
import { PLFunction, PLFunctionType } from '../../../../interpreter/functions/Function';
|
|
4
|
+
export declare class DSMFunctionCurrentTheme extends PLFunction {
|
|
5
|
+
numberOfArguments(): number;
|
|
6
|
+
keyword(): string;
|
|
7
|
+
type(): PLFunctionType;
|
|
8
|
+
isAsync(): boolean;
|
|
9
|
+
provideValueUsingArguments(args: Array<any>, context: PLInterpreterContext, executionContext: DSMExecutionContext): Promise<any | null>;
|
|
10
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { DSMExecutionContext } from '../../DSMExecutionContext';
|
|
2
|
+
import { PLInterpreterContext } from '../../../../interpreter/InterpreterContext';
|
|
3
|
+
import { PLFunction, PLFunctionType } from '../../../../interpreter/functions/Function';
|
|
4
|
+
export declare class DSMFunctionThemeById extends PLFunction {
|
|
5
|
+
numberOfArguments(): number;
|
|
6
|
+
keyword(): string;
|
|
7
|
+
type(): PLFunctionType;
|
|
8
|
+
isAsync(): boolean;
|
|
9
|
+
provideValueUsingArguments(args: Array<any>, context: PLInterpreterContext, executionContext: DSMExecutionContext): Promise<any | null>;
|
|
10
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { DSMExecutionContext } from '../../DSMExecutionContext';
|
|
2
|
+
import { PLInterpreterContext } from '../../../../interpreter/InterpreterContext';
|
|
3
|
+
import { PLFunction, PLFunctionType } from '../../../../interpreter/functions/Function';
|
|
4
|
+
export declare class DSMFunctionAllTokens extends PLFunction {
|
|
5
|
+
numberOfArguments(): number;
|
|
6
|
+
keyword(): string;
|
|
7
|
+
type(): PLFunctionType;
|
|
8
|
+
isAsync(): boolean;
|
|
9
|
+
provideValueUsingArguments(args: Array<any>, context: PLInterpreterContext, executionContext: DSMExecutionContext): Promise<any | null>;
|
|
10
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { DSMExecutionContext } from '../../DSMExecutionContext';
|
|
2
|
+
import { PLInterpreterContext } from '../../../../interpreter/InterpreterContext';
|
|
3
|
+
import { PLFunction, PLFunctionType } from '../../../../interpreter/functions/Function';
|
|
4
|
+
export declare class DSMFunctionAllTokensByApplyingThemes extends PLFunction {
|
|
5
|
+
numberOfArguments(): number;
|
|
6
|
+
keyword(): string;
|
|
7
|
+
type(): PLFunctionType;
|
|
8
|
+
isAsync(): boolean;
|
|
9
|
+
provideValueUsingArguments(args: Array<any>, context: PLInterpreterContext, executionContext: DSMExecutionContext): Promise<any | null>;
|
|
10
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { DSMExecutionContext } from '../../DSMExecutionContext';
|
|
2
|
+
import { PLInterpreterContext } from '../../../../interpreter/InterpreterContext';
|
|
3
|
+
import { PLFunction, PLFunctionType } from '../../../../interpreter/functions/Function';
|
|
4
|
+
export declare class DSMFunctionTokenById extends PLFunction {
|
|
5
|
+
numberOfArguments(): number;
|
|
6
|
+
keyword(): string;
|
|
7
|
+
type(): PLFunctionType;
|
|
8
|
+
isAsync(): boolean;
|
|
9
|
+
provideValueUsingArguments(args: Array<any>, context: PLInterpreterContext, executionContext: DSMExecutionContext): Promise<any | null>;
|
|
10
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { DSMExecutionContext } from '../../DSMExecutionContext';
|
|
2
|
+
import { PLInterpreterContext } from '../../../../interpreter/InterpreterContext';
|
|
3
|
+
import { PLFunction, PLFunctionType } from '../../../../interpreter/functions/Function';
|
|
4
|
+
export declare class DSMFunctionTokensByApplyingThemes extends PLFunction {
|
|
5
|
+
numberOfArguments(): number;
|
|
6
|
+
keyword(): string;
|
|
7
|
+
type(): PLFunctionType;
|
|
8
|
+
isAsync(): boolean;
|
|
9
|
+
provideValueUsingArguments(args: Array<any>, context: PLInterpreterContext, executionContext: DSMExecutionContext): Promise<any | null>;
|
|
10
|
+
}
|
package/build/main/language/src/extensions/dsm/functions/tokens/DSMFunctionTokensByGroupId.d.ts
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { DSMExecutionContext } from '../../DSMExecutionContext';
|
|
2
|
+
import { PLInterpreterContext } from '../../../../interpreter/InterpreterContext';
|
|
3
|
+
import { PLFunction, PLFunctionType } from '../../../../interpreter/functions/Function';
|
|
4
|
+
export declare class DSMFunctionTokensByGroupId extends PLFunction {
|
|
5
|
+
numberOfArguments(): number;
|
|
6
|
+
keyword(): string;
|
|
7
|
+
type(): PLFunctionType;
|
|
8
|
+
isAsync(): boolean;
|
|
9
|
+
provideValueUsingArguments(args: Array<any>, context: PLInterpreterContext, executionContext: DSMExecutionContext): Promise<any | null>;
|
|
10
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { DSMExecutionContext } from '../../DSMExecutionContext';
|
|
2
|
+
import { PLInterpreterContext } from '../../../../interpreter/InterpreterContext';
|
|
3
|
+
import { PLFunction, PLFunctionType } from '../../../../interpreter/functions/Function';
|
|
4
|
+
export declare class DSMFunctionTokensByType extends PLFunction {
|
|
5
|
+
numberOfArguments(): number;
|
|
6
|
+
keyword(): string;
|
|
7
|
+
type(): PLFunctionType;
|
|
8
|
+
isAsync(): boolean;
|
|
9
|
+
provideValueUsingArguments(args: Array<any>, context: PLInterpreterContext, executionContext: DSMExecutionContext): Promise<any | null>;
|
|
10
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './exports';
|