UNPKG

@coze/uniapp-api

Version:

Official Coze UniApp SDK for seamless AI integration into your applications | 扣子官方 UniApp SDK,助您轻松集成 AI 能力到应用中

20 lines (19 loc) 489 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.EventSource = void 0; const base_1 = require("./base"); /** * Default implementation for multiple platforms, used only for type compatibility. */ class EventSource extends base_1.BaseEventSource { constructor(_) { super(); } start() { throw new Error('Not implement'); } abort() { throw new Error('Not implement'); } } exports.EventSource = EventSource;