| 1 | export interface MediaQueryTypes { |
| 2 | all?: boolean |
| 3 | grid?: boolean |
| 4 | aural?: boolean |
| 5 | braille?: boolean |
| 6 | handheld?: boolean |
| 7 | print?: boolean |
| 8 | projection?: boolean |
| 9 | screen?: boolean |
| 10 | tty?: boolean |
| 11 | tv?: boolean |
| 12 | embossed?: boolean |
| 13 | } |
| 14 | |
| 15 | export type MediaQueryType = keyof MediaQueryTypes |
| 16 |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…