@joshfarrant/shortcuts-js
Version:
An iOS 12 Shortcuts creator
15 lines (14 loc) • 352 B
TypeScript
import WFWorkflowAction from '../interfaces/WF/WFWorkflowAction';
/**
* @action Get Last Import
* @section Content Types > Photos & Video > Photos
* @icon Photos
*
* Gets the most recent photo import from the Photos app.
*
* ```js
* getLastImport();
* ```
*/
declare const getLastImport: () => WFWorkflowAction;
export default getLastImport;