From 35d7a6a7bfe97850e69d6c91134596a08706e39d Mon Sep 17 00:00:00 2001 From: Cedric van Putten Date: Sun, 8 Dec 2019 01:06:58 +0100 Subject: [PATCH] Fix missing ignore type in config From the docs I understand that this should be there. I assume it uses the same type as the `files` property, one or more globs. --- types/index.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/types/index.d.ts b/types/index.d.ts index 0d7a43d..bf1b080 100644 --- a/types/index.d.ts +++ b/types/index.d.ts @@ -10,6 +10,7 @@ declare module 'replace-in-file' { export interface ReplaceInFileConfig { files: string | string[]; + ignore: string | string[]; from: string | RegExp | string[] | RegExp[] | FromCallback; to: string | string[] | ToCallback; countMatches?: boolean;