UNPKG

@joshfarrant/shortcuts-js

Version:
17 lines 396 B
"use strict"; 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