asposewordscloud
Version:
Aspose.Words Cloud SDK for Node.js
29 lines (28 loc) • 875 B
TypeScript
import { AttributeInfo } from '../internal/attributeInfo';
import { Border } from './border';
import { WordsResponse } from './wordsResponse';
export declare const importsMapBorderResponse: {
Border: typeof Border;
WordsResponse: typeof WordsResponse;
};
/**
* The REST response with a border.
* This response is returned by the Service when handling "GET {nodeWithBorders}/borders" REST API requests.
*/
export declare class BorderResponse extends WordsResponse {
/**
* Attribute type map
*/
static attributeTypeMap: Array<AttributeInfo>;
/**
* Returns attribute type map
*/
static getAttributeTypeMap(): AttributeInfo[];
/**
* Gets or sets the border.
*/
border: Border;
constructor(init?: Partial<BorderResponse>);
collectFilesContent(_resultFilesContent: Array<any>): void;
validate(): void;
}