UNPKG

zoid

Version:
22 lines (15 loc) 384 B
/* @flow */ export type ElementRefType = ElementRefType; export type DimensionsType = { width : number, height : number }; export type CssDimensionsType = { width : string, height : string }; export type CancelableType = { cancel : () => void }; export type StringMatcherType = string | Array<string>; export type EnvString = string | { [string] : string };