@every-env/cli
Version:
Multi-agent orchestrator for AI-powered development workflows
10 lines • 439 B
TypeScript
import { AppState, Action } from '../types/index.js';
interface UseKeyboardNavigationProps {
state: AppState;
dispatch: React.Dispatch<Action>;
onCreateTask: (title: string) => void;
onExecuteAction: (action: string) => void;
}
export declare function useKeyboardNavigation({ state, dispatch, onCreateTask, onExecuteAction }: UseKeyboardNavigationProps): void;
export {};
//# sourceMappingURL=useKeyboardNavigation.d.ts.map