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