@joshfarrant/shortcuts-js
Version:
An iOS 12 Shortcuts creator
11 lines (10 loc) • 725 B
TypeScript
import WFWorkflowAction from '../interfaces/WF/WFWorkflowAction';
declare const _default: (options: {
/** A second number to perform the operation on */
operand?: number | undefined;
/** The operation to apply to the number. Defaults to '+' */
operation?: "/" | "+" | "-" | "×" | "÷" | "…" | "*" | "x" | undefined;
/** The scientific operation to apply to the number */
scientificOperation?: "Modulus" | "x^2" | "x^3" | "x^y" | "e^x" | "10^x" | "ln(x)" | "log(x)" | "√x" | "∛x" | "x!" | "sin(x)" | "cos(x)" | "tan(x)" | "abs(x)" | "sqrt" | "cbrt" | undefined;
}, output?: import("../interfaces/Variable").default | undefined) => WFWorkflowAction | WFWorkflowAction[];
export default _default;