Last active
March 10, 2017 11:41
-
-
Save MariuszKogut/7f35f094b34b9b228c878b5702215c03 to your computer and use it in GitHub Desktop.
Quick & dirty TypeDefinition for react-router-transition
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Version: "react-router-transition": "0.0.6", | |
declare module 'react-router-transition' { | |
import * as React from 'react'; | |
export class RouteTransition extends React.Component<IRouteTransitionProps, any> { } | |
interface IRouteTransitionProps { | |
pathname?: any; | |
component?: any; | |
atEnter?: any; | |
atLeave?: any; | |
atActive?: any; | |
mapStyles?: any; | |
runOnMount?: any; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment