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