mirror of
https://github.com/Kir-Antipov/mc-publish.git
synced 2024-11-25 09:51:01 -05:00
Added actions
module
This commit is contained in:
parent
21333ee75b
commit
a7049ca420
1 changed files with 93 additions and 0 deletions
93
src/utils/actions/index.ts
Normal file
93
src/utils/actions/index.ts
Normal file
|
@ -0,0 +1,93 @@
|
|||
export {
|
||||
ActionGroup,
|
||||
|
||||
DEFAULT_ACTION_GROUP_DELIMITER,
|
||||
} from "./action-group";
|
||||
|
||||
export {
|
||||
ActionInput,
|
||||
|
||||
getActionInput,
|
||||
getActionInputs,
|
||||
setActionInput,
|
||||
setActionInputs,
|
||||
getAllActionInputs,
|
||||
getAllActionInputsAsObject,
|
||||
getAllActionInputsAsObjectUsingMetadata,
|
||||
|
||||
SYNTHETIC_UNDEFINED,
|
||||
} from "./action-input";
|
||||
|
||||
export {
|
||||
ActionInputDescriptor,
|
||||
|
||||
getActionInputDescriptor,
|
||||
getActionInputDescriptors,
|
||||
} from "./action-input-descriptor";
|
||||
|
||||
export {
|
||||
ActionMetadata,
|
||||
|
||||
parseActionMetadataFromFile,
|
||||
parseActionMetadataFromString,
|
||||
|
||||
processActionMetadataTemplate,
|
||||
processActionMetadataTemplateFile,
|
||||
processActionMetadataTemplateString,
|
||||
|
||||
createTypeScriptDefinitionForActionMetadata,
|
||||
createModuleLoaderTypeScriptDefinitionForActionMetadata,
|
||||
} from "./action-metadata";
|
||||
|
||||
export {
|
||||
ActionOutput,
|
||||
ActionOutputControllerOptions,
|
||||
|
||||
getActionOutput,
|
||||
getActionOutputs,
|
||||
getAllActionOutputs,
|
||||
setActionOutput,
|
||||
setActionOutputs,
|
||||
|
||||
createActionOutputController,
|
||||
createActionOutputControllerUsingMetadata,
|
||||
} from "./action-output";
|
||||
|
||||
export {
|
||||
ActionOutputDescriptor,
|
||||
|
||||
getActionOutputDescriptor,
|
||||
getActionOutputDescriptors,
|
||||
} from "./action-output-descriptor";
|
||||
|
||||
export {
|
||||
ActionParameter,
|
||||
|
||||
normalizeActionParameterName,
|
||||
} from "./action-parameter";
|
||||
|
||||
export {
|
||||
ActionParameterDescriptor,
|
||||
ActionParameterDescriptorExtractionOptions,
|
||||
|
||||
getActionParameterDescriptor,
|
||||
getActionParameterDescriptors,
|
||||
} from "./action-parameter-descriptor";
|
||||
|
||||
export {
|
||||
ActionParameterFactoryOptions,
|
||||
} from "./action-parameter-factory-options";
|
||||
|
||||
export {
|
||||
ActionParameterPathParser,
|
||||
|
||||
IDENTITY_ACTION_PARAMETER_PATH_PARSER,
|
||||
SPLIT_BY_WORDS_ACTION_PARAMETER_PATH_PARSER,
|
||||
SPLIT_BY_WORDS_AND_GROUP_ACTION_PARAMETER_PATH_PARSER,
|
||||
} from "./action-parameter-path-parser";
|
||||
|
||||
export {
|
||||
ActionParameterTypeDescriptor,
|
||||
|
||||
parseActionParameterTypeDescriptor,
|
||||
} from "./action-parameter-type-descriptor";
|
Loading…
Reference in a new issue