333
schangxiang@126.com
2025-09-19 18966e02fb573c7e2bb0c6426ed792b38b910940
1
{"version":3,"sources":["../browser/src/find-options/OrderByCondition.ts"],"names":[],"mappings":"","file":"OrderByCondition.js","sourcesContent":["/**\n * Special object that defines order condition for ORDER BY in sql.\n *\n * Example:\n * {\n *  \"name\": \"ASC\",\n *  \"id\": \"DESC\"\n * }\n */\nexport type OrderByCondition = {\n    [columnName: string]: (\"ASC\"|\"DESC\")|{\n        order: \"ASC\"|\"DESC\";\n        nulls: \"NULLS FIRST\"|\"NULLS LAST\";\n    }\n};\n"],"sourceRoot":".."}