| 1716 | returns: 'difference of the provided values', | 1716 | returns: 'difference of the provided values', |
| 1717 | unnamedArgumentList: [ | 1717 | unnamedArgumentList: [ |
| 1718 | SlashCommandArgument.fromProps({ | 1718 | SlashCommandArgument.fromProps({ |
| 1719 | description: 'values to find the difference', | 1719 | description: 'values to subtract, starting form the first provided value', |
| 1720 | typeList: [ARGUMENT_TYPE.NUMBER, ARGUMENT_TYPE.VARIABLE_NAME], | 1720 | typeList: [ARGUMENT_TYPE.NUMBER, ARGUMENT_TYPE.VARIABLE_NAME], |
| 1721 | isRequired: true, | 1721 | isRequired: true, |
| 1722 | acceptsMultiple: true, | 1722 | acceptsMultiple: true, |
| 1723 | enumProvider: commonEnumProviders.variables('all'), | 1723 | enumProvider: commonEnumProviders.numbersAndVariables, |
| 1724 | forceEnum: false, | 1724 | forceEnum: false, |
| 1725 | }), | 1725 | }), |
| 1726 | ], | 1726 | ], |
| | 1727 | splitUnnamedArgument: true, |
| 1727 | helpString: ` | 1728 | helpString: ` |
| 1728 | <div> | 1729 | <div> |
| 1729 | Performs a subtraction of the set of values and passes the result down the pipe. | 1730 | Performs a subtraction of the set of values and passes the result down the pipe. |