We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d4d9ab3 commit a19ec2aCopy full SHA for a19ec2a
src/node/util.ts
@@ -9,7 +9,7 @@ import * as util from "util"
9
import xdgBasedir from "xdg-basedir"
10
import { tmpdir } from "./constants"
11
12
-interface Paths {
+export interface Paths {
13
data: string
14
config: string
15
runtime: string
test/unit/node/util.test.ts
@@ -1,4 +1,4 @@
1
-import { getEnvPaths } from "../../../src/node/util"
+import { getEnvPaths, Paths } from "../../../src/node/util"
2
3
describe("getEnvPaths", () => {
4
it("should return an object with the data, config and runtime path", () => {
0 commit comments