import Result from '../models/Result'; declare class Custom { /** * * @param classNameObj 类名 不带sdk or 对象 * @param methodName 方法名 * @param params 参数 * @returns */ static order: (classNameObj: any, methodName?: string, params?: object) => Promise>; /** * * @param cb 回调函数 */ static event: ({ cb }: { cb: any; }) => Promise; /** * * @param cb 回调函数 */ static mouseEvent: ({ cb }: { cb: any; }) => Promise; static removeCadEvent: () => Promise; } export default Custom;