asposewordscloud
Version:
Aspose.Words Cloud SDK for Node.js
28 lines (27 loc) • 843 B
TypeScript
import { AttributeInfo } from '../internal/attributeInfo';
import { DrawingObject } from './drawingObject';
import { WordsResponse } from './wordsResponse';
export declare const importsMapDrawingObjectResponse: {
DrawingObject: typeof DrawingObject;
WordsResponse: typeof WordsResponse;
};
/**
* The REST response with a DrawingObject.
*/
export declare class DrawingObjectResponse extends WordsResponse {
/**
* Attribute type map
*/
static attributeTypeMap: Array<AttributeInfo>;
/**
* Returns attribute type map
*/
static getAttributeTypeMap(): AttributeInfo[];
/**
* Gets or sets the DrawingObject.
*/
drawingObject: DrawingObject;
constructor(init?: Partial<DrawingObjectResponse>);
collectFilesContent(_resultFilesContent: Array<any>): void;
validate(): void;
}