asposewordscloud
Version:
Aspose.Words Cloud SDK for Node.js
29 lines (28 loc) • 1.01 kB
TypeScript
import { AttributeInfo } from '../internal/attributeInfo';
import { DrawingObjectCollection } from './drawingObjectCollection';
import { WordsResponse } from './wordsResponse';
export declare const importsMapDrawingObjectsResponse: {
DrawingObjectCollection: typeof DrawingObjectCollection;
WordsResponse: typeof WordsResponse;
};
/**
* The REST response with a collection of DrawingObjects.
* This response should be returned by the service when handling: GET /drawingObjects.
*/
export declare class DrawingObjectsResponse extends WordsResponse {
/**
* Attribute type map
*/
static attributeTypeMap: Array<AttributeInfo>;
/**
* Returns attribute type map
*/
static getAttributeTypeMap(): AttributeInfo[];
/**
* Gets or sets the collection of DrawingObjects.
*/
drawingObjects: DrawingObjectCollection;
constructor(init?: Partial<DrawingObjectsResponse>);
collectFilesContent(_resultFilesContent: Array<any>): void;
validate(): void;
}