From 26105034da4fcce7ac883c899d781f016559310d Mon Sep 17 00:00:00 2001 From: ruki Date: Thu, 8 Nov 2018 00:38:48 +0800 Subject: switch to vuepress --- .../webpack/declarations/plugins/IgnorePlugin.d.ts | 27 ++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 node_modules/webpack/declarations/plugins/IgnorePlugin.d.ts (limited to 'node_modules/webpack/declarations/plugins/IgnorePlugin.d.ts') diff --git a/node_modules/webpack/declarations/plugins/IgnorePlugin.d.ts b/node_modules/webpack/declarations/plugins/IgnorePlugin.d.ts new file mode 100644 index 00000000..01ac0813 --- /dev/null +++ b/node_modules/webpack/declarations/plugins/IgnorePlugin.d.ts @@ -0,0 +1,27 @@ +/** + * This file was automatically generated. + * DO NOT MODIFY BY HAND. + * Run `yarn special-lint-fix` to update + */ + +export type IgnorePluginOptions = + | { + /** + * A RegExp to test the context (directory) against + */ + contextRegExp?: RegExp; + /** + * A RegExp to test the request against + */ + resourceRegExp?: RegExp; + } + | { + /** + * A filter function for context + */ + checkContext?: ((context: string) => boolean); + /** + * A filter function for resource + */ + checkResource?: ((resource: string) => boolean); + }; -- cgit v1.2.3