20 lines
518 B
TypeScript
20 lines
518 B
TypeScript
/**
|
|
* YouTube Summarizer JavaScript/TypeScript SDK
|
|
* Official client library for the YouTube Summarizer Developer Platform
|
|
*/
|
|
|
|
export { YouTubeSummarizerClient, createClient } from './client';
|
|
export { WebSocketManager } from './websocket';
|
|
export { YouTubeSummarizerMCP, createMCPInterface } from './mcp';
|
|
|
|
// Export all types
|
|
export * from './types';
|
|
|
|
// Export all errors
|
|
export * from './errors';
|
|
|
|
// Version
|
|
export const VERSION = '4.2.0';
|
|
|
|
// Default export
|
|
export { createClient as default } from './client'; |