polished
Version:
A lightweight toolset for writing styles in Javascript.
18 lines (15 loc) • 420 B
Flow
// @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 {top, topRight, right, bottomRight, bottom, bottomLeft, left, topLeft} SideKeyword
*/
export type SideKeyword =
| 'top'
| 'topRight'
| 'right'
| 'bottomRight'
| 'bottom'
| 'bottomLeft'
| 'left'
| 'topLeft'