Skip to content

Commit 5ffed03

Browse files
authored
fix: don't export CollectorChecker (#1467)
1 parent ae62f9c commit 5ffed03

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

uno-preset-a11y.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import type { Preset } from 'unocss'
22

3-
export type CollectorChecker = (warning: string, rule: string) => void
3+
type CollectorChecker = (warning: string, rule: string) => void
44

55
// Track warnings to avoid duplicates
66
const warnedClasses = new Set<string>()

uno-preset-rtl.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import type { CSSEntries, DynamicMatcher, Preset, RuleContext } from 'unocss'
22
import { cornerMap, directionSize, h } from '@unocss/preset-wind4/utils'
33

4-
export type CollectorChecker = (warning: string, rule: string) => void
4+
type CollectorChecker = (warning: string, rule: string) => void
55

66
// Track warnings to avoid duplicates
77
const warnedClasses = new Set<string>()

0 commit comments

Comments
 (0)