Files
goTorrent/torrent-project/node_modules/material-ui/internal/transition.js.flow

13 lines
313 B
Plaintext

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