Access a single platform function's signature type by name.
type EmailSig = PlatformFunction<"send_email">// → { input: { body: string; to: string }; output: { status: boolean } } Copy
type EmailSig = PlatformFunction<"send_email">// → { input: { body: string; to: string }; output: { status: boolean } }
Access a single platform function's signature type by name.