From d0fa9390cd00852cac0aead74fba4db5f7e5cc72 Mon Sep 17 00:00:00 2001 From: Dylan Piercey Date: Mon, 8 Jul 2024 11:17:48 -0230 Subject: [PATCH] fix: invalid interface reference in d.ts (#23) --- index.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.d.ts b/index.d.ts index 88db2ef..e44ec36 100644 --- a/index.d.ts +++ b/index.d.ts @@ -6,7 +6,7 @@ export const toMatchFile: ( content: string | Buffer, filename?: string, options?: FileMatcherOptions -) => CustomMatcherResult; +) => jest.CustomMatcherResult; declare interface FileMatcherOptions { diff?: DiffOptions;