UNPKG

@alpernative/tree

Version:

[`@alpernative/tree`](https://www.npmjs.com/package/@alpernative/tree) is a high-performance, customizable tree component for React. It provides a wide range of features, including virtualization, drag-and-drop, and nested drag-and-drop support.

9 lines (8 loc) 195 B
export default class DelayedFunction { delay: number; timeoutId: number | undefined; fn?: Function; constructor(delay: number); start(fn: Function): void; stop(): void; }