@robert-brightline/auth-db - v0.0.21
    Preparing search index...

    Type Alias GetAppAggregateType<T>

    GetAppAggregateType: {
        [P in keyof T & keyof AggregateApp]: P extends "_count"
        | "count"
            ? T[P] extends true
                ? number
                : Prisma.GetScalarType<T[P], AggregateApp[P]>
            : Prisma.GetScalarType<T[P], AggregateApp[P]>
    }

    Type Parameters