Files
DefinitelyTyped/react-addons-transition-group/index.d.ts
2016-05-11 16:32:53 -07:00

17 lines
728 B
TypeScript

// Type definitions for React v0.14 (react-addons-transition-group)
// Project: http://facebook.github.io/react/
// Definitions by: Asana <https://asana.com>, AssureSign <http://www.assuresign.com>, Microsoft <https://microsoft.com>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
import { ReactElement, ComponentClass, ReactType } from 'react';
declare namespace ReactCSSTransitionGroup {
export interface TransitionGroupProps {
component?: ReactType;
className?: string;
childFactory?: (child: ReactElement<any>) => ReactElement<any>;
}
}
declare var ReactCSSTransitionGroup : ComponentClass<ReactCSSTransitionGroup.TransitionGroupProps>;
export = ReactCSSTransitionGroup;