blob: 9e9ef25792c2889749bfee844290e6bef0adbe04 (
plain)
1
2
3
4
5
6
7
8
9
10
|
import type { AttrMatcher, StringMatcher } from "posthtml";
interface Matcher {
tag?: StringMatcher;
attrs: AttrMatcher;
}
declare function createMatcher(matcher: string | string[]): Matcher | Matcher[];
export default createMatcher;
|