zoid
Version:
Cross domain components.
22 lines (15 loc) • 384 B
JavaScript
/* @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 };