| 15 | export type MediaQueryType = keyof MediaQueryTypes |
| 16 | |
| 17 | export interface MediaQueryMatchers { |
| 18 | aspectRatio?: string |
| 19 | deviceAspectRatio?: string |
| 20 | height?: number | string |
| 21 | deviceHeight?: number | string |
| 22 | width?: number | string |
| 23 | deviceWidth?: number | string |
| 24 | color?: boolean |
| 25 | colorIndex?: boolean |
| 26 | monochrome?: boolean |
| 27 | resolution?: number | string |
| 28 | orientation?: 'portrait' | 'landscape' |
| 29 | scan?: 'progressive' | 'interlace' |
| 30 | type?: MediaQueryType |
| 31 | } |
| 32 | |
| 33 | export interface MediaQueryFeatures extends MediaQueryMatchers { |
| 34 | minAspectRatio?: string |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…