interface ReportStartEventData<T extends Module = Module> {
    reportStart: { mod: T } & {
        inPayloads?: DeepRestrictToStringKeys<{ schema: string }>[];
    };
    [key: string
    | number
    | symbol]: EventArgs;
}

Type Parameters

Hierarchy (View Summary)

Indexable

Properties

Properties

reportStart: { mod: T } & {
    inPayloads?: DeepRestrictToStringKeys<{ schema: string }>[];
}