Interface DivineStartEventData<T, TIn>

interface DivineStartEventData<
    T extends Module = Module,
    TIn extends Payload = Payload,
> {
    divineStart: { mod: T } & { inPayloads: TIn[] };
    [key: string | number | symbol]: EventArgs;
}

Type Parameters

Hierarchy (View Summary)

Indexable

Properties

Properties

divineStart: { mod: T } & { inPayloads: TIn[] }