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

    Type Alias GetPermissionAggregateType<T>

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

    Type Parameters