@flanksource/clicky-ui
Version:
Flanksource Clicky UI — React component library built on shadcn/ui with light/dark and density theming.
30 lines • 704 B
TypeScript
export interface ProcessNode {
pid: number;
ppid?: number;
name?: string;
command?: string;
status?: string;
cpu_percent?: number;
rss?: number;
vms?: number;
open_files?: number;
is_root?: boolean;
children?: ProcessNode[];
stack_capture?: StackCapture;
}
export interface StackCapture {
status: "ready" | "unsupported" | "error";
supported?: boolean;
text?: string;
error?: string;
collected_at?: string;
}
export interface RunMeta {
version?: string;
sequence: number;
kind?: "initial" | "rerun" | string;
started?: string;
ended?: string;
args?: Record<string, unknown>;
}
//# sourceMappingURL=types.d.ts.map