@aecworks/bimbox-bimserver-sdk-js
Version:
AECWorks BIMBox 产品线 BIMServer 的 sdk 的 JavaScript 实现,采用Typescript语言
14 lines • 661 B
TypeScript
import ProxyInterface from '../proxy-interface';
import { AccountEmailInscribe, AccountProfileModel } from '../model/account';
declare class AccountProfileProxy implements ProxyInterface<AccountProfileModel> {
accountProfileModel: AccountProfileModel;
constructor(responseData: any);
getModel(): AccountProfileModel;
}
declare class AccountEmailInscribeProxy implements ProxyInterface<AccountEmailInscribe> {
emailInscribe: AccountEmailInscribe;
constructor(responseData: any);
getModel(): AccountEmailInscribe;
}
export { AccountProfileProxy, AccountEmailInscribeProxy };
//# sourceMappingURL=account-profile-proxy.d.ts.map