Interface DynamicDispatchOptions

interface DynamicDispatchOptions {
    limits?: DynamicDispatchLimits;
    outbound?: {
        [key: string]: any;
    };
}

Properties

Properties

Limit resources of invoked Worker script.

outbound?: {
    [key: string]: any;
}

Arguments for outbound Worker script, if configured.

Type declaration

  • [key: string]: any