UNPKG

posthtml-match-helper

Version:

A helper to expand CSS selectors into PostHTML matcher objects

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