@joshfarrant/shortcuts-js
Version:
An iOS 12 Shortcuts creator
20 lines • 511 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const utils_1 = require("../utils");
/**
* @action Create Note
* @section Content Types > Sharing > Notes
* @icon Notes
*
* Shares the input with Notes.
*
* ```js
* createNote();
* ```
*/
const createNote = () => ({
WFWorkflowActionIdentifier: 'com.apple.mobilenotes.SharingExtension',
WFWorkflowActionParameters: {},
});
exports.default = utils_1.withActionOutput(createNote);
//# sourceMappingURL=createNote.js.map