UNPKG

xp.js-styled

Version:

Build performant styled components for Web, iOS and Android platforms.

6 lines (5 loc) 234 B
/** * useDebouncedState Hook allows to defer a state update by a timelapse, to rate limit state updates */ export declare const useDebouncedState: (initialValue: any, delay?: number) => any[]; export default useDebouncedState;