mirror of
https://github.com/idanoo/GoScrobble.git
synced 2024-11-24 17:35:16 +00:00
24 lines
637 B
TypeScript
24 lines
637 B
TypeScript
|
import * as React from 'react';
|
||
|
import { CSSModule } from './index';
|
||
|
|
||
|
export interface FadeProps extends React.HTMLAttributes<HTMLElement> {
|
||
|
[key: string]: any;
|
||
|
in?: boolean;
|
||
|
baseClass?: string;
|
||
|
baseClassIn?: string;
|
||
|
tag?: React.ElementType;
|
||
|
cssModule?: CSSModule;
|
||
|
transitionAppearTimeout?: number;
|
||
|
transitionEnterTimeout?: number;
|
||
|
transitionLeaveTimeout?: number;
|
||
|
transitionAppear?: boolean;
|
||
|
transitionEnter?: boolean;
|
||
|
transitionLeave?: boolean;
|
||
|
onLeave?: () => void;
|
||
|
onEnter?: () => void;
|
||
|
innerRef?: React.Ref<HTMLElement>;
|
||
|
}
|
||
|
|
||
|
declare class Fade extends React.Component<FadeProps> {}
|
||
|
export default Fade;
|