[READ-ONLY] a fast, modern browser for the npm registry

fix: don't export CollectorChecker (#1467)

authored by

Wojciech Maj and committed by
GitHub
5ffed03f ae62f9c4

+2 -2
+1 -1
uno-preset-a11y.ts
··· 1 1 import type { Preset } from 'unocss' 2 2 3 - export type CollectorChecker = (warning: string, rule: string) => void 3 + type CollectorChecker = (warning: string, rule: string) => void 4 4 5 5 // Track warnings to avoid duplicates 6 6 const warnedClasses = new Set<string>()
+1 -1
uno-preset-rtl.ts
··· 1 1 import type { CSSEntries, DynamicMatcher, Preset, RuleContext } from 'unocss' 2 2 import { cornerMap, directionSize, h } from '@unocss/preset-wind4/utils' 3 3 4 - export type CollectorChecker = (warning: string, rule: string) => void 4 + type CollectorChecker = (warning: string, rule: string) => void 5 5 6 6 // Track warnings to avoid duplicates 7 7 const warnedClasses = new Set<string>()