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).

27 lines 781 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. */ /** * Timestamp Utilities * Consistent timestamp parsing and formatting * October 2025 */ /** * Parse timestamp from various formats to ISO 8601 */ export declare function parseTimestamp(timestamp: string | undefined): string; /** * Convert timestamp to ISO 8601 */ export declare function toISO8601(timestamp: string): string; /** * Get current timestamp in ISO 8601 */ export declare function getCurrentTimestamp(): string; /** * Format timestamp for display */ export declare function formatTimestamp(timestamp: string): string; //# sourceMappingURL=TimestampUtils.d.ts.map