Skip to content

Instantly share code, notes, and snippets.

@nojaf
Created July 12, 2017 12:54
Show Gist options
  • Save nojaf/9b733bf584aecbe28e015fb54f439009 to your computer and use it in GitHub Desktop.
Save nojaf/9b733bf584aecbe28e015fb54f439009 to your computer and use it in GitHub Desktop.
react-throttle.d.ts
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