UNPKG

polished

Version:

A lightweight toolset for writing styles in Javascript.

10 lines (7 loc) 350 B
// @flow // Note: we define properties with JSdoc since documentation.js doesn't recognize // exported types yet. See https://github.com/documentationjs/documentation/issues/680 /** * @property {undefined, null, 'active', 'focus', 'hover'} InteractionState */ export type InteractionState = typeof undefined | null | 'active' | 'focus' | 'hover'