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