Type Alias GetGuildCustomMessageAggregateType<T>

GetGuildCustomMessageAggregateType<T>: {
    [P in keyof T & keyof AggregateGuildCustomMessage]: P extends "_count" | "count"
        ? T[P] extends true
            ? number
            : GetScalarType<T[P], AggregateGuildCustomMessage[P]>
        : GetScalarType<T[P], AggregateGuildCustomMessage[P]>
}

Type Parameters