@joshfarrant/shortcuts-js
Version:
An iOS 12 Shortcuts creator
13 lines (12 loc) • 401 B
TypeScript
import WFWorkflowActionsInterface from '../interfaces/WF/WFWorkflowAction';
/**
* Builds a shortcut from an array of actions.
* @ignore
*/
export declare const buildShortcut: (actions?: WFWorkflowActionsInterface[], options?: {
icon?: {
color?: number | undefined;
glyph?: number | undefined;
} | undefined;
showInWidget?: boolean | undefined;
} | undefined) => string;