We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dd5e2ec commit dfd600dCopy full SHA for dfd600d
src/index.ts
@@ -0,0 +1,2 @@
1
+export { lat_lon2n_E } from "./lat_lon2n_E.js";
2
+export { n_E2lat_lon } from "./n_E2lat_lon.js";
test/jest/lat_lon2n_E.spec.ts
@@ -1,5 +1,5 @@
import { it } from "@fast-check/jest";
-import { lat_lon2n_E } from "../../src/lat_lon2n_E.js";
+import { lat_lon2n_E } from "../../src/index.js";
3
import { arbitraryLatLon } from "../arbitrary.js";
4
import {
5
NvectorTestClient,
test/jest/n_E2lat_lon.spec.ts
@@ -1,6 +1,5 @@
-import { n_E2lat_lon } from "../../src/n_E2lat_lon.js";
+import { lat_lon2n_E, n_E2lat_lon } from "../../src/index.js";
6
0 commit comments