Type Alias EmitEventTransformDefinitionBeta

EmitEventTransformDefinition: {
    args: string[];
    topic: string;
    type: "emit_event";
}

Type representing a transform definition that emits an event.

Type declaration

  • Betaargs: string[]

    The arguments for the event.

  • Betatopic: string

    The topic of the event to emit.

  • Betatype: "emit_event"

    The type of the transform, always 'emit_event' for this type.