XYO Platform SDK - v3.10.6
    Preparing search index...

    Interface DivineEndEventData<T, TIn, TOut>

    interface DivineEndEventData<
        T extends Module = Module,
        TIn extends Payload = Payload,
        TOut extends Payload = Payload,
    > {
        divineEnd: { mod: T } & {
            errors: Error[];
            inPayloads: TIn[];
            outPayloads: TOut[];
        };
        [key: string
        | number
        | symbol]: EventArgs;
    }

    Type Parameters

    Hierarchy (View Summary)

    Indexable

    Index

    Properties

    Properties

    divineEnd: { mod: T } & {
        errors: Error[];
        inPayloads: TIn[];
        outPayloads: TOut[];
    }