export interface CloudFunctionListOptions { /** * 小程序appId */ appId: string; /** * 服务空间ID */ spaceId: string; } export interface CloudFunctionData { /** * 云函数名称 */ name: string; /** * 云函数描述 */ desc: string; /** * 创建时间 */ createdAt: string; /** * 修改时间 */ modifiedAt: string; /** * 云函数超时时间 */ timeout: string; } declare function cloudFunctionList(options: CloudFunctionListOptions): Promise; export default cloudFunctionList;