UNPKG

asposewordscloud

Version:
29 lines (28 loc) 944 B
import { AttributeInfo } from '../internal/attributeInfo'; import { Hyperlinks } from './hyperlinks'; import { WordsResponse } from './wordsResponse'; export declare const importsMapHyperlinksResponse: { Hyperlinks: typeof Hyperlinks; WordsResponse: typeof WordsResponse; }; /** * The REST response with a collection of hyperlinks. * This response should be returned by the service when handling "GET /{name}/hyperlinks" REST API calls. */ export declare class HyperlinksResponse extends WordsResponse { /** * Attribute type map */ static attributeTypeMap: Array<AttributeInfo>; /** * Returns attribute type map */ static getAttributeTypeMap(): AttributeInfo[]; /** * Gets or sets the collection of hyperlinks. */ hyperlinks: Hyperlinks; constructor(init?: Partial<HyperlinksResponse>); collectFilesContent(_resultFilesContent: Array<any>): void; validate(): void; }