UNPKG

@atlaskit/tree

Version:

A React Component for displaying expandable and sortable tree hierarchies

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; }