UNPKG

asposewordscloud

Version:
29 lines (28 loc) 884 B
import { AttributeInfo } from '../internal/attributeInfo'; import { Bookmark } from './bookmark'; import { WordsResponse } from './wordsResponse'; export declare const importsMapBookmarkResponse: { Bookmark: typeof Bookmark; WordsResponse: typeof WordsResponse; }; /** * The REST response with a bookmark. * This response should be returned by the service when handling: GET bookmarks/{bookmarkName}. */ export declare class BookmarkResponse extends WordsResponse { /** * Attribute type map */ static attributeTypeMap: Array<AttributeInfo>; /** * Returns attribute type map */ static getAttributeTypeMap(): AttributeInfo[]; /** * Gets or sets the bookmark. */ bookmark: Bookmark; constructor(init?: Partial<BookmarkResponse>); collectFilesContent(_resultFilesContent: Array<any>): void; validate(): void; }