| 27 | export type CSSClassNames<K extends string> = Record<K, string>; |
| 28 | |
| 29 | export interface NestedCSSProperties extends CSSProperties { |
| 30 | $nest?: NestedCSSSelectors; |
| 31 | |
| 32 | /** |
| 33 | * A debug only (stripped in process.env.NODE_ENV !== 'production') name |
| 34 | * Helps you figure out where the class is coming from if you care |
| 35 | **/ |
| 36 | $debugName?: string; |
| 37 | } |
| 38 | |
| 39 | export type MediaQuery = { |
| 40 | type?: 'screen' | 'print' | 'all'; |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…