material-ui-cordova
Version:
React components that implement Google's Material Design.
13 lines (11 loc) • 313 B
Flow
// @flow
export type TransitionDuration = number | { enter: number, exit: number };
export type TransitionCallback = (element: HTMLElement) => void;
export type TransitionClasses = {
appear?: string,
appearActive?: string,
enter?: string,
enterActive?: string,
exit?: string,
exitActive?: string,
};