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.
2 parents 9d3c1db + c5a155f commit 88aadf1Copy full SHA for 88aadf1
lib/create-sort.d.ts
@@ -0,0 +1,3 @@
1
+export default function createSort<T = string>(configuration?: {
2
+ unitlessMqAlwaysFirst?: boolean | undefined;
3
+}): (a: T, b: T) => number;
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