import { Observable } from 'rxjs'; import { ILeanEngineController } from '../internal/LeanEngine/controller/ILeanEngineController'; import { RxAVApp } from '../RxLeanCloud'; export declare class RxLeanEngine { protected static readonly LeanEngineController: ILeanEngineController; /** * 调用云函数 * * @static * @param {string} name 云函数 name * @param {Object} [parameters] 参数字典:{{ [key: string]: any }} * @returns {Observable} * * @memberOf RxLeanEngine */ static callFunction(name: string, parameters?: { [key: string]: any; }, app?: RxAVApp): Observable<{ [key: string]: any; }>; }