From aa1332003aacbc89e45cfe02056e278e2b47d8c6 Mon Sep 17 00:00:00 2001 From: David Sherret Date: Sun, 30 Jun 2024 18:27:46 -0400 Subject: [PATCH] fix: correct type of `FileMatchingInfo` --- common.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common.ts b/common.ts index e4bfa03..346f91c 100644 --- a/common.ts +++ b/common.ts @@ -83,6 +83,6 @@ export interface PluginInfo { /** Information about how the current config matches files. */ export interface FileMatchingInfo { - fileExtensions: string[] | undefined; + fileExtensions: string[]; fileNames: string[]; }