@nanocollective/nanocoder
Version:
A local-first CLI coding agent that brings the power of agentic coding tools like Claude Code and Gemini CLI to local models or controlled APIs like OpenRouter
14 lines • 631 B
TypeScript
import React from 'react';
import type { DevelopmentMode } from '../types/core.js';
interface SchedulerViewProps {
activeJobCount: number;
queueLength: number;
isProcessing: boolean;
currentJobCommand: string | null;
developmentMode: DevelopmentMode;
contextPercentUsed: number | null;
onExit: () => void;
}
export declare const SchedulerView: React.MemoExoticComponent<({ activeJobCount, queueLength, isProcessing, currentJobCommand, developmentMode, contextPercentUsed, onExit, }: SchedulerViewProps) => import("react/jsx-runtime").JSX.Element>;
export {};
//# sourceMappingURL=scheduler-view.d.ts.map