/** * Shared types for Recoder platform */ export interface ProjectConfig { name: string; type: string; version: string; description?: string; } export interface UserProfile { id: string; name: string; email: string; preferences?: Record; } export interface ApiResponse { success: boolean; data?: T; error?: string; timestamp: number; } export interface ProviderConfig { name: string; apiKey?: string; baseUrl?: string; models?: string[]; } export * from './types/index'; //# sourceMappingURL=types.d.ts.map