UNPKG

@flanksource/clicky-ui

Version:

Flanksource Clicky UI — React component library built on shadcn/ui with light/dark and density theming.

9 lines 399 B
import { ProcessNode } from './types'; export type DiagnosticsTreeProps = { root?: ProcessNode; selectedPid?: number | null; expandAll?: boolean | null; onSelect: (pid: number) => void; }; export declare function DiagnosticsTree({ root, selectedPid, expandAll, onSelect, }: DiagnosticsTreeProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=DiagnosticsTree.d.ts.map