From 810caae616d4d98b55f746bd9b597c6a90c473db Mon Sep 17 00:00:00 2001 From: Matthew Gamble Date: Sun, 12 Jun 2022 19:14:13 +1000 Subject: [PATCH] Make `ignoreFiles` option accept readonly arrays (#235) --- index.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.d.ts b/index.d.ts index b8d817a..eec9ac4 100644 --- a/index.d.ts +++ b/index.d.ts @@ -54,7 +54,7 @@ export interface Options extends FastGlobOptionsWithoutCwd { @default undefined */ - readonly ignoreFiles?: string | string[]; + readonly ignoreFiles?: string | readonly string[]; /** The current working directory in which to search.