UNPKG

@coze/uniapp-api

Version:

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

11 lines (10 loc) 283 B
/** * 事件系统类,用于替代UniApp的Events */ export declare class Events { private events; on(eventName: string, callback: Function): this; off(eventName?: string, callback?: Function): this; trigger(eventName: string, ...args: any[]): this; } export {};