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).
17 lines • 900 B
TypeScript
/**
* 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.
*/
/**
* Public type exports
* Phase 2: TypeScript rewrite - October 2025
*/
export type { Result } from './result.js';
export { Ok, Err, isOk, isErr } from './result.js';
export type { Message, MessageMetadata, Conversation } from './conversation.js';
export type { ConversationSource } from './conversation.js';
export type { ConversationSummary, ConversationMetrics } from './summary.js';
export type { UserIntent, AIAction, TechnicalWork, Decision, ConversationFlow, WorkingState, AnalysisResult, } from './extraction.js';
export { AppError, FileOperationError, ConversationParsingError, ExtractionError, PlatformDetectionError, ValidationError, } from './errors.js';
//# sourceMappingURL=index.d.ts.map