table
Summary: _typescript_ Reviewed By: priteshrnandgaonkar Differential Revision: D16807180 fbshipit-source-id: dcba794351eee69c0574dc224cf7bd2732bea447
This commit is contained in:
committed by
Facebook Github Bot
parent
62a204bdbe
commit
4c4169063d
18
types/ReactDebounceRender.d.tsx
Normal file
18
types/ReactDebounceRender.d.tsx
Normal file
@@ -0,0 +1,18 @@
|
||||
/**
|
||||
* Copyright 2018-present Facebook.
|
||||
* This source code is licensed under the MIT license found in the
|
||||
* LICENSE file in the root directory of this source tree.
|
||||
* @format
|
||||
*/
|
||||
|
||||
declare module 'react-debounce-render' {
|
||||
export default function<P>(
|
||||
component: React.ComponentType<P>,
|
||||
maxWait: number,
|
||||
options: {
|
||||
maxWait?: number;
|
||||
leading?: boolean;
|
||||
trailing?: boolean;
|
||||
},
|
||||
): React.ComponentType<P & {ref?: (ref: React.RefObject<any>) => void}>;
|
||||
}
|
||||
Reference in New Issue
Block a user