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

    Type Alias GetRoleAggregateType<T>

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

    Type Parameters