feat(react-bootstrap/fade): update props interface (#24763)

- add missing mountOnEnter
- rename transitionAppear to appear
This commit is contained in:
Joha2n
2018-04-09 19:29:54 +02:00
committed by Mohamed Hegazy
parent 3f8c6acca1
commit 3321a12dc9
2 changed files with 3 additions and 1 deletions

View File

@@ -11,6 +11,7 @@
// Vito Samson <https://github.com/vitosamson>,
// Karol Janyst <https://github.com/LKay>
// Aaron Beall <https://github.com/aaronbeall>
// Johann Rakotoharisoa <https://github.com/jrakotoharisoa>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
// TypeScript Version: 2.6

View File

@@ -5,7 +5,8 @@ declare namespace Fade {
export interface FadeProps extends TransitionCallbacks, React.HTMLProps<Fade> {
in?: boolean;
timeout?: number;
transitionAppear?: boolean;
mountOnEnter?: boolean;
appear?: boolean;
unmountOnExit?: boolean;
}
}