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