asposewordscloud
Version:
Aspose.Words Cloud SDK for Node.js
28 lines (27 loc) • 843 B
TypeScript
import { AttributeInfo } from '../internal/attributeInfo';
import { LinkElement } from './linkElement';
import { SectionLink } from './sectionLink';
export declare const importsMapSectionLinkCollection: {
LinkElement: typeof LinkElement;
SectionLink: typeof SectionLink;
};
/**
* The collection of section's links.
*/
export declare class SectionLinkCollection extends LinkElement {
/**
* Attribute type map
*/
static attributeTypeMap: Array<AttributeInfo>;
/**
* Returns attribute type map
*/
static getAttributeTypeMap(): AttributeInfo[];
/**
* Gets or sets the collection of section's links.
*/
sectionLinkList: Array<SectionLink>;
constructor(init?: Partial<SectionLinkCollection>);
collectFilesContent(_resultFilesContent: Array<any>): void;
validate(): void;
}