asposewordscloud
Version:
Aspose.Words Cloud SDK for Node.js
32 lines (31 loc) • 882 B
TypeScript
import { AttributeInfo } from '../internal/attributeInfo';
import { CustomXmlPartLink } from './customXmlPartLink';
export declare const importsMapCustomXmlPart: {
CustomXmlPartLink: typeof CustomXmlPartLink;
};
/**
* DTO container with a CustomXmlPart.
*/
export declare class CustomXmlPart extends CustomXmlPartLink {
/**
* Attribute type map
*/
static attributeTypeMap: Array<AttributeInfo>;
/**
* Returns attribute type map
*/
static getAttributeTypeMap(): AttributeInfo[];
/**
* Gets or sets the custom xml part id.
* Cannot be null.
*/
id: string;
/**
* Gets or sets the custom xml part data.
* Cannot be null.Default is empty string.
*/
data: string;
constructor(init?: Partial<CustomXmlPart>);
collectFilesContent(_resultFilesContent: Array<any>): void;
validate(): void;
}