Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
omni-code / tui / dist / components / Sidebar.d.ts
Size: Mime:
import React from "react";
import type { Project } from "../rpc.js";
export declare const SIDEBAR_WIDTH = 30;
type Mode = "fleet" | "chat" | "work" | "settings" | "containers";
type Props = {
    mode: Mode;
    projects: Project[];
    projectIndex: number;
    selectedProject: Project | null;
    autoDispatchMap: Record<string, boolean>;
    chatPaneOpen: boolean;
    workPaneOpen: boolean;
    status: string | null;
};
export declare function Sidebar({ mode, projects, projectIndex, selectedProject, autoDispatchMap, chatPaneOpen, workPaneOpen, status, }: Props): React.JSX.Element;
export {};
//# sourceMappingURL=Sidebar.d.ts.map