mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-02-22 00:32:51 +00:00
16 lines
544 B
TypeScript
16 lines
544 B
TypeScript
// Type definitions for react-transition-group 2.0
|
|
// Project: https://github.com/reactjs/react-transition-group
|
|
// Definitions by: Karol Janyst <https://github.com/LKay>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
// TypeScript Version: 2.3
|
|
|
|
import CSSTransition = require("react-transition-group/CSSTransition");
|
|
import Transition from "react-transition-group/Transition";
|
|
import TransitionGroup = require("react-transition-group/TransitionGroup");
|
|
|
|
export = {
|
|
CSSTransition,
|
|
Transition,
|
|
TransitionGroup
|
|
};
|