1源程序清单第一章 SDK 核心功能代码1.1. SDK.ts 代码1.interface SDKOptions {2.type: "onlyPage" | "drag" | "page";3.apiKey: string;4.baseUrl?: string;5.[key: string]: any; // Allows any other options6.}7.declare global {8.interface Window {9.OnCallSDK?: typeof SDK;10.apiKey: string;11.baseUrl?: string;12.}13.}14.class SDK {15.private component: Component;16.private containerId: string;17.private options: SDKOptions;18.private app: any | null = null; // Use VueApp type from vue19.c...
发表评论取消回复