dns-witch.net.eu.org/node_modules/posthtml-match-helper/lib/index.d.ts
2025-07-05 18:19:59 +02:00

10 lines
241 B
TypeScript

import type { AttrMatcher, StringMatcher } from "posthtml";
interface Matcher {
tag?: StringMatcher;
attrs: AttrMatcher;
}
declare function createMatcher(matcher: string | string[]): Matcher | Matcher[];
export default createMatcher;