UNPKG

@mui/utils

Version:

Utility functions for React components.

5 lines (4 loc) 160 B
export interface Cancelable { clear(): void; } export default function debounce<T extends (...args: any[]) => any>(func: T, wait?: number): T & Cancelable;