DefinitelyTyped/react-css-transition-replace/index.d.ts
2016-11-10 08:11:59 -08:00

18 lines
679 B
TypeScript

// Type definitions for react-css-transition-replace 2.0.1
// Project: http://marnusw.github.io/react-css-transition-replace/
// Definitions by: Karol Janyst <https://github.com/LKay>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
import * as React from "react";
import * as CSSTransitionGroup from "react-addons-css-transition-group";
declare namespace CSSTransitionReplace {
interface Props extends CSSTransitionGroup.CSSTransitionGroupProps {
overflowHidden?: boolean
}
}
declare var CSSTransitionReplace: CSSTransitionReplace;
type CSSTransitionReplace = React.ComponentClass<CSSTransitionReplace.Props>;
export = CSSTransitionReplace;