`[[dispatch_namespaces]]` in TOML maps to an array of these objects in JSON: ```ts { type: "dispa

[[dispatch_namespaces]] in TOML maps to an array of these objects in JSON:

{
  type: "dispatch_namespace";
  name: string;
  namespace: string;
  outbound?: {
    worker: {
      service: string;
      environment?: string;
    };
    params?: { name: string }[];
  };
};
Was this page helpful?