DefinitelyTyped/types/react-animate-on-scroll/index.d.ts
Nathan Shively-Sanders f0ce987bc1 Update project urls to match NPM url
Note that this *trivially* updates project urls by adding the NPM url to
the end, even when the urls are almost identical or the DT one is
outdated. I'll clean up the urls in a later commit.

This PR is unfinished! Please do not merge it yet.
2019-02-11 17:10:55 -08:00

25 lines
797 B
TypeScript

// Type definitions for react-animate-on-scroll 2.1
// Project: https://github.com/dbramwell/react-animate-on-scroll, http://dbramwell.github.io/react-animate-on-scroll
// Definitions by: Ricardo Albuquerque <https://github.com/ralbuque>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
// TypeScript Version: 2.8
import * as React from 'react';
export interface ScrollAnimationProps {
animateIn?: string;
animateOut?: string;
offset?: number;
duration?: number;
delay?: number;
initiallyVisible?: boolean;
animateOnce?: boolean;
style?: object;
scrollableParentSelector?: string;
className?: string;
}
export default class ScrollAnimation extends React.Component<ScrollAnimationProps> {
constructor(props: ScrollAnimationProps);
}