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

    Type Alias GetRolePermissionsAggregateType<T>

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

    Type Parameters