diff options
Diffstat (limited to 'apps/workflowengine/src/workflowengine.js')
-rw-r--r-- | apps/workflowengine/src/workflowengine.js | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/apps/workflowengine/src/workflowengine.js b/apps/workflowengine/src/workflowengine.js index 00ca352d9af..a3e92c2a997 100644 --- a/apps/workflowengine/src/workflowengine.js +++ b/apps/workflowengine/src/workflowengine.js @@ -30,7 +30,7 @@ import ShippedChecks from './components/Checks' /** * A plugin for displaying a custom value field for checks * - * @typedef {Object} CheckPlugin + * @typedef {object} CheckPlugin * @property {string} class - The PHP class name of the check * @property {Comparison[]} operators - A list of possible comparison operations running on the check * @property {Vue} component - A vue component to handle the rendering of options @@ -39,12 +39,12 @@ import ShippedChecks from './components/Checks' * event once the data has changed * @property {callable} placeholder - Return a placeholder of no custom component is used * @property {callable} validate - validate a check if no custom component is used - **/ + */ /** * A plugin for extending the admin page repesentation of a operator * - * @typedef {Object} OperatorPlugin + * @typedef {object} OperatorPlugin * @property {string} id - The PHP class name of the check * @property {string} operation - Default value for the operation field * @property {string} color - Custom color code to be applied for the operator selector @@ -55,10 +55,10 @@ import ShippedChecks from './components/Checks' */ /** - * @typedef {Object} Comparison + * @typedef {object} Comparison * @property {string} operator - value the comparison should have, e.g. !less, greater * @property {string} name - Translated readable text, e.g. less or equals - **/ + */ /** * Public javascript api for apps to register custom plugins |