18 lines
366 B
TypeScript
18 lines
366 B
TypeScript
|
import * as React from 'react';
|
||
|
|
||
|
import { TransitionCallbacks } from './helpers';
|
||
|
|
||
|
export interface FadeProps
|
||
|
extends TransitionCallbacks,
|
||
|
React.ClassAttributes<Fade> {
|
||
|
in?: boolean;
|
||
|
mountOnEnter?: boolean;
|
||
|
unmountOnExit?: boolean;
|
||
|
appear?: boolean;
|
||
|
timeout?: number;
|
||
|
}
|
||
|
|
||
|
declare class Fade extends React.Component<FadeProps> {}
|
||
|
|
||
|
export default Fade;
|