polished
Version:
A lightweight toolset for writing styles in Javascript.
16 lines (13 loc) • 394 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 {string} prop
* @property {string} fromSize
* @property {string} toSize
*/
export type FluidRangeConfiguration = {|
prop: string,
fromSize: string | number,
toSize: string | number,
|}