Home > @css-hooks/core > Condition
Condition type
Represents the conditions under which a given hook or declaration applies.
Signature:
export type Condition<H> = H | { and: Condition<H>[]; } | { or: Condition<H>[]; } | { not: Condition<H>; };
References: Condition