Files
goTorrent/goTorrentWebUI/node_modules/material-ui/transitions/Slide.d.ts

13 lines
329 B
TypeScript

import * as React from 'react';
import { Theme } from '../styles/createMuiTheme';
import { TransitionProps } from './transition';
export interface SlideProps extends TransitionProps {
direction: 'left' | 'right' | 'up' | 'down';
theme?: Theme;
}
declare const Slide: React.ComponentType<SlideProps>;
export default Slide;