Skip to content

Commit

Permalink
Add a module index
Browse files Browse the repository at this point in the history
  • Loading branch information
ezzatron committed Sep 30, 2023
1 parent dd5e2ec commit dfd600d
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 2 additions & 0 deletions src/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
export { lat_lon2n_E } from "./lat_lon2n_E.js";
export { n_E2lat_lon } from "./n_E2lat_lon.js";
2 changes: 1 addition & 1 deletion test/jest/lat_lon2n_E.spec.ts
Original file line number Diff line number Diff line change
@@ -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";
import { arbitraryLatLon } from "../arbitrary.js";
import {
NvectorTestClient,
Expand Down
3 changes: 1 addition & 2 deletions test/jest/n_E2lat_lon.spec.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import { it } from "@fast-check/jest";
import { lat_lon2n_E } from "../../src/lat_lon2n_E.js";
import { n_E2lat_lon } from "../../src/n_E2lat_lon.js";
import { lat_lon2n_E, n_E2lat_lon } from "../../src/index.js";
import { arbitraryLatLon } from "../arbitrary.js";
import {
NvectorTestClient,
Expand Down

0 comments on commit dfd600d

Please sign in to comment.