Skip to main content
The Deno 2 Release Candidate is here
Learn more
Module

x/wmill/gen/index.ts>MainArgSignature

Open-source developer platform to power your entire infra and turn scripts into webhooks, workflows and UIs. Fastest workflow engine (13x vs Airflow). Open-source alternative to Retool and Temporal.
Latest
type alias MainArgSignature
import { type MainArgSignature } from "https://deno.land/x/wmill@v1.402.0/gen/index.ts";
definition: { type: "Valid" | "Invalid"; 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: unknown; }
); }>; }
| { list: ((
| "float"
| "int"
| "bool"
| "email"
| "unknown"
| "bytes"
| "dict"
| "datetime"
| "sql"
| { str: unknown; }
) | null
); }
); has_default?: boolean; default?: unknown; }>; no_main_func: (boolean) | null; has_preprocessor: (boolean) | null; }