From 23bd356c7d664cb63b0d2fe21bd17de93ca63e1e Mon Sep 17 00:00:00 2001 From: Thomas Deinhamer <184284+thasmo@users.noreply.github.com> Date: Wed, 27 Nov 2019 20:17:03 +0100 Subject: [PATCH] Fix type of files option (#40597) --- types/stylelint-webpack-plugin/index.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/stylelint-webpack-plugin/index.d.ts b/types/stylelint-webpack-plugin/index.d.ts index 87c3c261d6..52def71805 100644 --- a/types/stylelint-webpack-plugin/index.d.ts +++ b/types/stylelint-webpack-plugin/index.d.ts @@ -38,7 +38,7 @@ declare namespace StylelintWebpackPlugin { context?: string; emitErrors?: boolean; failOnError?: boolean; - files?: string[]; + files?: string|string[]; formatter?: Formatter; lintDirtyModulesOnly?: boolean; syntax?: string;