import { Prisma } from "@prisma/client"; import type { ColumnDefinition } from "../tableDefinitions/types"; import type { OrderByState } from "../interfaces/orderBy"; /** * Convert orderBy to SQL ORDER BY clause * @param orderBy orderBy state * @param tableColumns column definitions, used to map orderBy column to internal name * @returns Prisma.sql */ export declare function orderByToPrismaSql(orderBy: OrderByState, tableColumns: ColumnDefinition[]): Prisma.Sql; //# sourceMappingURL=orderByToPrisma.d.ts.map