interface TaskStartEventData<T extends Module = Module> {
    taskStart: { mod: T } & {
        address: Lowercase<string>;
        inPayloads?: DeepRestrictToStringKeys<{ schema: string }>[];
        name?: string;
    };
    [key: string
    | number
    | symbol]: EventArgs;
}

Type Parameters

Hierarchy (View Summary)

Indexable

Properties

Properties

taskStart: { mod: T } & {
    address: Lowercase<string>;
    inPayloads?: DeepRestrictToStringKeys<{ schema: string }>[];
    name?: string;
}