UNPKG

storybook-addon-performance

Version:

A storybook addon to help better understand and debug performance for React components

11 lines (8 loc) 272 B
import { TaskGroup } from '../../types.js'; interface Fiber { child: Fiber | null; sibling: Fiber | null; } declare function traverse(rootNode: Fiber, callback: (node: Fiber) => void): void; declare const group: TaskGroup; export { group as default, traverse };