Skip to content

Interface: SyntaxMatch

Defined in: packages/providers/src/syntax.ts:33

The result of matching a value against a syntax.

Properties

ok

ts
ok: boolean;

Defined in: packages/providers/src/syntax.ts:35

Whether the value conforms. True when skipped — we don't flag what we can't check.


skipped

ts
skipped: boolean;

Defined in: packages/providers/src/syntax.ts:37

True when the value couldn't be checked statically (universal *, var()/env(), CSS-wide keyword).

Released under the MIT License