// 导出所有类型 export * from './types'; // 导出主要的 API export { default as theRoom } from './browser'; export { default } from './browser'; // 全局变量声明 declare global { interface Window { theRoom: import('./types').TheRoomAPI; } }