@joshfarrant/shortcuts-js
Version:
An iOS 12 Shortcuts creator
20 lines • 540 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const utils_1 = require("../utils");
/**
* @action Get Name of Emoji
* @section Content Types > Text >
* @icon Smiley
*
* Gets the names of emoji passed into the action.
*
* ```js
* getNameOfEmoji();
* ```
*/
const getNameOfEmoji = () => ({
WFWorkflowActionIdentifier: 'is.workflow.actions.getnameofemoji',
WFWorkflowActionParameters: {},
});
exports.default = utils_1.withActionOutput(getNameOfEmoji);
//# sourceMappingURL=getNameOfEmoji.js.map