shell-ahk
Version:
`Lodash`/`jQuery` for `AHK`.
12 lines (10 loc) • 317 B
TypeScript
export type Delay = (
func: Function,
wait: number,
...args: unknown[]
) => Function
declare module './delay' {
/** Creates a function that delays invoking func until after wait milliseconds have elapsed since the last time the debounced function was invoked */
const delay: Delay
export default delay
}