@joshfarrant/shortcuts-js
Version:
An iOS 12 Shortcuts creator
20 lines • 561 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const utils_1 = require("../utils");
/**
* @action Get Link to File
* @section Content Types > Documents > File Storage
* @icon Documents
*
* Gets a public link to the file passed into the action.
*
* ```js
* getLinkToFile();
* ```
*/
const getLinkToFile = () => ({
WFWorkflowActionIdentifier: 'is.workflow.actions.file.getlink',
WFWorkflowActionParameters: {},
});
exports.default = utils_1.withActionOutput(getLinkToFile);
//# sourceMappingURL=getLinkToFile.js.map