- Add ClusterList, PortForwardList, AddClusterModal, PortForwardForm components - Add KubernetesPage component with cluster and port forward management - Add TypeScript types for Kubernetes management (ClusterInfo, PortForwardRequest, PortForwardResponse) - Add 6 IPC commands to tauriCommands.ts for cluster and port forward management - Write unit tests for Kubernetes IPC commands (6 tests) - All 308 Rust tests passing - All 98 frontend tests passing - TypeScript type check passing - Project builds successfully
5 lines
204 B
TypeScript
5 lines
204 B
TypeScript
export { ClusterList } from "./ClusterList";
|
|
export { PortForwardList } from "./PortForwardList";
|
|
export { AddClusterModal } from "./AddClusterModal";
|
|
export { PortForwardForm } from "./PortForwardForm";
|