mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
16 lines
479 B
TypeScript
16 lines
479 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("./CSSTransition");
|
|
import Transition from "./Transition";
|
|
import TransitionGroup = require("./TransitionGroup");
|
|
|
|
export {
|
|
CSSTransition,
|
|
Transition,
|
|
TransitionGroup
|
|
};
|