@ptkl/sdk - v1.7.1
    Preparing search index...

    Interface PlatformFunctions

    PlatformFunctions is an open interface that serves as a registry of platform function signatures. It is empty by default and can be extended in two ways:

    1. At build time — run ptkl generate-types to fetch your project's functions and emit a .d.ts file with a module augmentation block:

      declare module "@ptkl/sdk" {
      interface PlatformFunctions {
      "send_email": { input: { body: string; to: string }; output: { status: boolean } }
      }
      }
    2. At runtime in Monaco editors — the editor auto-patches the interface from your project's live function signatures.