UNPKG

create-ai-chat-context-experimental

Version:

Phase 2: TypeScript rewrite - AI Chat Context & Memory System with conversation extraction and AICF format support (powered by aicf-core v2.1.0).

20 lines 581 B
/** * This file is part of create-ai-chat-context-experimental. * Licensed under the GNU Affero General Public License v3.0 or later (AGPL-3.0-or-later). * See LICENSE file for details. */ import type { Result } from '../types/result.js'; export interface StopCommandOptions { cwd?: string; verbose?: boolean; } export interface StopResult { message: string; pid?: number; } export declare class StopCommand { private cwd; constructor(options?: StopCommandOptions); execute(): Promise<Result<StopResult>>; } //# sourceMappingURL=StopCommand.d.ts.map