UNPKG

cssobjectjs

Version:
28 lines (22 loc) 454 B
/** * @enum IMedia * Media Query operators and types */ const IMedia = { /** Only or Not Media Query Operators */ ONLY_OR_NOT: ['only', 'not'], /** Media Query Types */ MEDIA_TYPES: [ 'all', // default 'tv', 'tty', 'aural', 'print', 'screen', 'braile', 'handheld', 'embossed', 'projection', ], } export default IMedia