Export .uvPath instead of default

This commit is contained in:
David Reed 2022-10-15 22:55:48 -04:00
parent 7f4be85a51
commit 0c4fb3e9f3
2 changed files with 2 additions and 2 deletions

View file

@ -4,4 +4,4 @@ const { resolve } = require('node:path');
const uvPath = resolve(__dirname, '..', 'dist'); const uvPath = resolve(__dirname, '..', 'dist');
module.exports = uvPath; exports.uvPath = uvPath;

View file

@ -1,3 +1,3 @@
declare const uvPath: string; declare const uvPath: string;
export = uvPath; export { uvPath };