// @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, |}