UNPKG

codecrucible-synth

Version:

Production-Ready AI Development Platform with Multi-Voice Synthesis, Smithery MCP Integration, Enterprise Security, and Zero-Timeout Reliability

15 lines 495 B
/** * Extended Type Definitions * Additional types to resolve TypeScript compilation errors */ // Type guards for safe type checking export function isExtendedUnifiedModelClient(client) { return typeof client === 'object' && client !== null; } export function isExtendedVoiceArchetype(voice) { return typeof voice === 'object' && voice !== null && 'systemPrompt' in voice; } export function hasProperty(obj, prop) { return prop in obj; } //# sourceMappingURL=extended-types.js.map