UNPKG

@jag-k/scriptable-jsx

Version:

Create a Scriptable bundle from JSX

11 lines (10 loc) 344 B
/// <reference types="@types/scriptable-ios" /> export declare function alertCreateElement(element: unknown, props: Record<string, any>, ...children: any[]): Alert | { type: "text-field"; props: Record<string, any>; children?: undefined; } | { type: "action"; props: Record<string, any>; children: any[]; } | undefined;