/** * 程序类型 */ export declare type SubApplicationType = 'TINYAPP_NORMAL' | 'TINYAPP_PLUGIN' | 'TINYAPP_TEMPLATE'; export interface MiniAppList { /** * 小程序appId */ appId: string; /** * 小程序名称 */ appName: string; /** * 小程序logo */ logoUrl: string; /** * 程序类型 */ subApplicationType: SubApplicationType; } /** * 获取可以开发的小程序列表 */ export default function miniAppList(): Promise;