@joshfarrant/shortcuts-js
Version:
An iOS 12 Shortcuts creator
17 lines • 396 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const Variable_1 = require("../interfaces/Variable");
/**
* Creates a Variable.
*
* ```js
* const myVar = variable('My Variable');
* ```
*/
exports.variable = (
/** The name of the Variable */
name) => new Variable_1.default({
VariableName: name,
Type: 'Variable',
});
//# sourceMappingURL=variable.js.map