We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9d3c1db commit 0011b19Copy full SHA for 0011b19
lib/create-sort.d.ts
@@ -0,0 +1,4 @@
1
+export default function createSort<T = string>(configuration?: {
2
+unitlessMqAlwaysFirst?: boolean | undefined;
3
+}): ((a: T, b: T) => number);
4
+
package.json
@@ -20,6 +20,16 @@
20
"dev-exec": "docker exec -it scmq-dev sh",
21
"dev-down": "docker compose -f compose.dev.yml down --remove-orphans"
22
},
23
+ "exports": {
24
+ ".": {
25
+ "types": "./lib/index.d.ts",
26
+ "import": "./lib/index.js"
27
+ },
28
+ "./create-sort": {
29
+ "types": "./lib/create-sort.d.ts",
30
+ "import": "./lib/create-sort.js"
31
+ }
32
33
"jest": {
34
"verbose": true,
35
"testURL": "http://localhost"
0 commit comments