asposewordscloud
Version:
Aspose.Words Cloud SDK for Node.js
28 lines (27 loc) • 779 B
TypeScript
import { AttributeInfo } from '../internal/attributeInfo';
import { LinkElement } from './linkElement';
import { ListInfo } from './listInfo';
export declare const importsMapLists: {
LinkElement: typeof LinkElement;
ListInfo: typeof ListInfo;
};
/**
* DTO container with an array of document lists.
*/
export declare class Lists extends LinkElement {
/**
* Attribute type map
*/
static attributeTypeMap: Array<AttributeInfo>;
/**
* Returns attribute type map
*/
static getAttributeTypeMap(): AttributeInfo[];
/**
* Gets or sets the array of document lists.
*/
listInfo: Array<ListInfo>;
constructor(init?: Partial<Lists>);
collectFilesContent(_resultFilesContent: Array<any>): void;
validate(): void;
}