Created
July 12, 2017 12:54
-
-
Save nojaf/9b733bf584aecbe28e015fb54f439009 to your computer and use it in GitHub Desktop.
react-throttle.d.ts
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
declare module "react-throttle" { | |
export interface DebounceProps extends React.Props<Debounce> { | |
time: number; | |
handler: string; | |
} | |
export class Debounce extends React.Component<DebounceProps> {} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment