interface JobEndEventData<T extends Module = Module> {
    jobEnd: { mod: T } & {
        finalResult?: Record<
            Lowercase<string>,
            DeepRestrictToStringKeys<{ schema: string }>[],
        >;
        inPayloads?: DeepRestrictToStringKeys<{ schema: string }>[];
    };
    [key: string
    | number
    | symbol]: EventArgs;
}

Type Parameters

Hierarchy (View Summary)

Indexable

Properties

Properties

jobEnd: { mod: T } & {
    finalResult?: Record<
        Lowercase<string>,
        DeepRestrictToStringKeys<{ schema: string }>[],
    >;
    inPayloads?: DeepRestrictToStringKeys<{ schema: string }>[];
}