asposewordscloud
Version:
Aspose.Words Cloud SDK for Node.js
39 lines (38 loc) • 958 B
TypeScript
import { AttributeInfo } from '../internal/attributeInfo';
import { LinkElement } from './linkElement';
export declare const importsMapHeaderFooterLink: {
LinkElement: typeof LinkElement;
};
/**
* HeaderFooter link element.
*/
export declare class HeaderFooterLink extends LinkElement {
/**
* Attribute type map
*/
static attributeTypeMap: Array<AttributeInfo>;
/**
* Returns attribute type map
*/
static getAttributeTypeMap(): AttributeInfo[];
/**
* Gets or sets the paragraph's text.
*/
type: HeaderFooterLink.TypeEnum;
constructor(init?: Partial<HeaderFooterLink>);
collectFilesContent(_resultFilesContent: Array<any>): void;
validate(): void;
}
/**
* Enums for HeaderFooterLink
*/
export declare namespace HeaderFooterLink {
enum TypeEnum {
HeaderEven,
HeaderPrimary,
FooterEven,
FooterPrimary,
HeaderFirst,
FooterFirst
}
}