@joshfarrant/shortcuts-js
Version:
An iOS 12 Shortcuts creator
20 lines • 566 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const utils_1 = require("../utils");
/**
* @action View Content Graph
* @section Actions > Scripting > Content
* @icon Graph
*
* Shows the results of the previous action in the Content Graph.
*
* ```js
* viewContentGraph();
* ```
*/
const viewContentGraph = () => ({
WFWorkflowActionIdentifier: 'is.workflow.actions.viewresult',
WFWorkflowActionParameters: {},
});
exports.default = utils_1.withActionOutput(viewContentGraph);
//# sourceMappingURL=viewContentGraph.js.map