@juspay/neurolink
Version:
Universal AI Development Platform with working MCP integration, multi-provider support, voice (TTS/STT/realtime), and professional CLI. 58+ external MCP servers discoverable, multimodal file processing, RAG pipelines. Build, test, and deploy AI applicatio
20 lines • 812 B
JavaScript
/**
* Content type definitions for multimodal support
*
* @deprecated This file has been reorganized. All multimodal types are now in './multimodal.js'
* These re-exports are maintained for backward compatibility.
* Please import from './multimodal.js' in new code.
*
* Migration guide:
* ```typescript
* // Old (still works)
* import type { MultimodalInput } from './types/content.js';
*
* // New (preferred)
* import type { MultimodalInput } from './types/multimodal.js';
* ```
*/
// Runtime function re-exports for type guards
// These MUST be regular exports (not "export type") because they are actual functions
export { isTextContent, isImageContent, isCSVContent, isPDFContent, isAudioContent, isVideoContent, isMultimodalInput, } from "./multimodal.js";
//# sourceMappingURL=content.js.map