some deletions
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / @typescript-eslint / experimental-utils / _ts3.4 / dist / ast-utils / eslint-utils / PatternMatcher.d.ts
diff --git a/.config/coc/extensions/node_modules/coc-prettier/node_modules/@typescript-eslint/experimental-utils/_ts3.4/dist/ast-utils/eslint-utils/PatternMatcher.d.ts b/.config/coc/extensions/node_modules/coc-prettier/node_modules/@typescript-eslint/experimental-utils/_ts3.4/dist/ast-utils/eslint-utils/PatternMatcher.d.ts
deleted file mode 100644 (file)
index 5a76071..0000000
+++ /dev/null
@@ -1,48 +0,0 @@
-interface PatternMatcher {\r
-    /**\r
-     * Iterate all matched parts in a given string.\r
-     *\r
-     * @see {@link https://eslint-utils.mysticatea.dev/api/ast-utils.html#matcher-execall}\r
-     */\r
-    execAll(str: string): IterableIterator<RegExpExecArray>;\r
-    /**\r
-     * Check whether this pattern matches a given string or not.\r
-     *\r
-     * @see {@link https://eslint-utils.mysticatea.dev/api/ast-utils.html#matcher-test}\r
-     */\r
-    test(str: string): boolean;\r
-    /**\r
-     * Replace all matched parts by a given replacer.\r
-     *\r
-     * @see {@link https://eslint-utils.mysticatea.dev/api/ast-utils.html#matcher-symbol-replace}\r
-     * @example\r
-     * const { PatternMatcher } = require("eslint-utils")\r
-     * const matcher = new PatternMatcher(/\\p{Script=Greek}/g)\r
-     *\r
-     * module.exports = {\r
-     *     meta: {},\r
-     *     create(context) {\r
-     *         return {\r
-     *             "Literal[regex]"(node) {\r
-     *                 const replacedPattern = node.regex.pattern.replace(\r
-     *                     matcher,\r
-     *                     "[\\u0370-\\u0373\\u0375-\\u0377\\u037A-\\u037D\\u037F\\u0384\\u0386\\u0388-\\u038A\\u038C\\u038E-\\u03A1\\u03A3-\\u03E1\\u03F0-\\u03FF\\u1D26-\\u1D2A\\u1D5D-\\u1D61\\u1D66-\\u1D6A\\u1DBF\\u1F00-\\u1F15\\u1F18-\\u1F1D\\u1F20-\\u1F45\\u1F48-\\u1F4D\\u1F50-\\u1F57\\u1F59\\u1F5B\\u1F5D\\u1F5F-\\u1F7D\\u1F80-\\u1FB4\\u1FB6-\\u1FC4\\u1FC6-\\u1FD3\\u1FD6-\\u1FDB\\u1FDD-\\u1FEF\\u1FF2-\\u1FF4\\u1FF6-\\u1FFE\\u2126\\uAB65]|\\uD800[\\uDD40-\\uDD8E\\uDDA0]|\\uD834[\\uDE00-\\uDE45]"\r
-     *                 )\r
-     *             },\r
-     *         }\r
-     *     },\r
-     * }\r
-     */\r
-    [Symbol.replace](str: string, replacer: string | ((...strs: string[]) => string)): string;\r
-}\r
-/**\r
- * The class to find a pattern in strings as handling escape sequences.\r
- * It ignores the found pattern if it's escaped with `\`.\r
- *\r
- * @see {@link https://eslint-utils.mysticatea.dev/api/ast-utils.html#patternmatcher-class}\r
- */\r
-declare const PatternMatcher: new (pattern: RegExp, options?: {\r
-    escaped?: boolean | undefined;\r
-} | undefined) => PatternMatcher;\r
-export { PatternMatcher };\r
-//# sourceMappingURL=PatternMatcher.d.ts.map\r