@aecworks/bimbox-bimserver-sdk-js
Version:
AECWorks BIMBox 产品线 BIMServer 的 sdk 的 JavaScript 实现,采用Typescript语言
14 lines • 622 B
TypeScript
import ProxyInterface from '../proxy-interface';
import { AccountPageModel, PublicAccountInfoModel } from '../model/account';
declare class AccountPageProxy implements ProxyInterface<AccountPageModel> {
accountPage: AccountPageModel;
constructor(responesData: any);
getModel(): AccountPageModel;
}
declare class PublicAccountInfoProxy implements ProxyInterface<PublicAccountInfoModel> {
private publicAccountInfo;
constructor(responseData: any);
getModel(): PublicAccountInfoModel;
}
export { AccountPageProxy, PublicAccountInfoProxy };
//# sourceMappingURL=account-page-proxy.d.ts.map