UNPKG

asposewordscloud

Version:
29 lines (28 loc) 1.02 kB
import { AttributeInfo } from '../internal/attributeInfo'; import { ListFormat } from './listFormat'; import { WordsResponse } from './wordsResponse'; export declare const importsMapParagraphListFormatResponse: { ListFormat: typeof ListFormat; WordsResponse: typeof WordsResponse; }; /** * The REST response with a list format for a paragraph. * This response is returned by the Service when handling "GET https://api.aspose.cloud/v4.0/words/Test.doc/paragraphs/{0}/listFormat" REST API requests. */ export declare class ParagraphListFormatResponse extends WordsResponse { /** * Attribute type map */ static attributeTypeMap: Array<AttributeInfo>; /** * Returns attribute type map */ static getAttributeTypeMap(): AttributeInfo[]; /** * Gets or sets the list format for a paragraph. */ listFormat: ListFormat; constructor(init?: Partial<ParagraphListFormatResponse>); collectFilesContent(_resultFilesContent: Array<any>): void; validate(): void; }