@coze/taro-api
Version:
Official Coze Taro SDK for seamless AI integration into your applications | 扣子官方 Taro SDK,助您轻松集成 AI 能力到应用中
16 lines (15 loc) • 355 B
JavaScript
import { BaseEventSource } from './base';
/**
* Default implementation for multiple platforms, used only for type compatibility.
*/
export class EventSource extends BaseEventSource {
constructor(_) {
super();
}
start() {
throw new Error('Not implement');
}
abort() {
throw new Error('Not implement');
}
}