asposewordscloud
Version:
Aspose.Words Cloud SDK for Node.js
27 lines (26 loc) • 837 B
TypeScript
import { AttributeInfo } from '../internal/attributeInfo';
import { ModelInterface } from './modelInterface';
import { FileReference } from './fileReference';
export declare const importsMapBaseEntry: {
FileReference: typeof FileReference;
};
/**
* Represents a base class for document which will be appended to the original resource document.
*/
export declare abstract class BaseEntry implements ModelInterface {
/**
* Attribute type map
*/
static attributeTypeMap: Array<AttributeInfo>;
/**
* Returns attribute type map
*/
static getAttributeTypeMap(): AttributeInfo[];
/**
* Gets or sets the file reference.
*/
fileReference: FileReference;
constructor(init?: Partial<BaseEntry>);
collectFilesContent(_resultFilesContent: Array<any>): void;
validate(): void;
}