UNPKG

@aecworks/bimbox-bimserver-sdk-js

Version:

AECWorks BIMBox 产品线 BIMServer 的 sdk 的 JavaScript 实现,采用Typescript语言

14 lines 523 B
import ProxyInterface from '../proxy-interface'; import { CommentModel } from '../model/comment'; declare class CommentProxy implements ProxyInterface<CommentModel> { private comment; constructor(responseData: any); getModel(): CommentModel; } declare class CommentArrayProxy implements ProxyInterface<CommentModel[]> { private comment; constructor(responseData: any); getModel(): CommentModel[]; } export { CommentProxy, CommentArrayProxy }; //# sourceMappingURL=comment-proxy.d.ts.map