storybook-addon-performance
Version:
A storybook addon to help better understand and debug performance for React components
10 lines (7 loc) • 348 B
TypeScript
import { RunContext } from './machine.js';
import { Nullable } from '../types.js';
import 'xstate';
declare function savePinned(storyName: string, results: RunContext): void;
declare function clearPinned(storyName: string): void;
declare function getPinned(storyName: string): Nullable<RunContext>;
export { clearPinned, getPinned, savePinned };