schangxiang@126.com
2025-09-19 0821aa23eabe557c0d9ef5dbe6989c68be35d1fe
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":".."}