mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-08-13 05:20:25 +00:00
Since v2.9.0, the `appearDone` class name has been supported. See also: - https://github.com/reactjs/react-transition-group/blob/v2.9.0/CHANGELOG.md - https://github.com/reactjs/react-transition-group/commit/fe3c156c11b140b4ce494261a2cc4ac66e99f40c
18 lines
604 B
TypeScript
18 lines
604 B
TypeScript
// Type definitions for react-transition-group 2.9
|
|
// Project: https://github.com/reactjs/react-transition-group
|
|
// Definitions by: Karol Janyst <https://github.com/LKay>
|
|
// Epskampie <https://github.com/Epskampie>
|
|
// Masafumi Koba <https://github.com/ybiquitous>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
// TypeScript Version: 2.8
|
|
|
|
import CSSTransition = require("./CSSTransition");
|
|
import Transition from "./Transition";
|
|
import TransitionGroup = require("./TransitionGroup");
|
|
|
|
export {
|
|
CSSTransition,
|
|
Transition,
|
|
TransitionGroup
|
|
};
|