asposewordscloud
Version:
Aspose.Words Cloud SDK for Node.js
37 lines (36 loc) • 902 B
TypeScript
import { AttributeInfo } from '../internal/attributeInfo';
import { ModelInterface } from './modelInterface';
export declare const importsMapReplaceRange: {};
/**
* DTO container with a range element.
*/
export declare class ReplaceRange implements ModelInterface {
/**
* Attribute type map
*/
static attributeTypeMap: Array<AttributeInfo>;
/**
* Returns attribute type map
*/
static getAttributeTypeMap(): AttributeInfo[];
/**
* Gets or sets the range's text.
*/
text: string;
/**
* Gets or sets the range's text type.
*/
textType: ReplaceRange.TextTypeEnum;
constructor(init?: Partial<ReplaceRange>);
collectFilesContent(_resultFilesContent: Array<any>): void;
validate(): void;
}
/**
* Enums for ReplaceRange
*/
export declare namespace ReplaceRange {
enum TextTypeEnum {
Text,
Html
}
}