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

Properties

Properties

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