Skip to main content
Module

x/wmill/deps.ts>MainArgSignature

Open-source developer platform to turn scripts into workflows and UIs. Fastest workflow engine (5x vs Airflow). Open-source alternative to Airplane and Retool.
Go to Latest
namespace MainArgSignature
import { MainArgSignature } from "https://deno.land/x/wmill@v1.303.0/deps.ts";
type alias MainArgSignature
import { type MainArgSignature } from "https://deno.land/x/wmill@v1.303.0/deps.ts";
definition: { type: MainArgSignature.type; error: string; star_args: boolean; star_kwargs?: boolean; args: Array<{ name: string; typ: (
| "float"
| "int"
| "bool"
| "email"
| "unknown"
| "bytes"
| "dict"
| "datetime"
| "sql"
| { resource: string | null; }
| { str: Array<string> | null; }
| { object: Array<{ key: string; typ: (
| "float"
| "int"
| "bool"
| "email"
| "unknown"
| "bytes"
| "dict"
| "datetime"
| "sql"
| { str: any; }
); }>; }
| { list: (
| "float"
| "int"
| "bool"
| "email"
| "unknown"
| "bytes"
| "dict"
| "datetime"
| "sql"
| { str: any; }
) | null
; }
); has_default?: boolean; default?: any; }>; }