From e846d3d16085c4e7e9b37479ab7955eedeadd344 Mon Sep 17 00:00:00 2001 From: Anthony Beaumont Date: Sat, 26 Oct 2024 08:32:36 +0700 Subject: [PATCH] v1.3.0 --- package.json | 4 +++- types/util.d.ts | 1 + 2 files changed, 4 insertions(+), 1 deletion(-) create mode 100644 types/util.d.ts diff --git a/package.json b/package.json index d1b79de..b32ae4b 100644 --- a/package.json +++ b/package.json @@ -16,8 +16,10 @@ "files": [ "/lib/ffi-napi", "/lib/koffi", + "/lib/util.js", "/types/ffi-napi", - "/types/koffi" + "/types/koffi", + "/types/util.d.ts" ], "engines": { "node": ">=20.18.0" diff --git a/types/util.d.ts b/types/util.d.ts new file mode 100644 index 0000000..aad8e72 --- /dev/null +++ b/types/util.d.ts @@ -0,0 +1 @@ +export function hashFileSync(filePath: string, algo?: string): string;