asposewordscloud
Version:
Aspose.Words Cloud SDK for Node.js
29 lines (28 loc) • 838 B
TypeScript
import { AttributeInfo } from '../internal/attributeInfo';
import { ModelInterface } from './modelInterface';
export declare const importsMapWatermarkText: {};
/**
* Class for insert watermark text request building.
* @deprecated This model will be removed in the future.
*/
export declare class WatermarkText implements ModelInterface {
/**
* Attribute type map
*/
static attributeTypeMap: Array<AttributeInfo>;
/**
* Returns attribute type map
*/
static getAttributeTypeMap(): AttributeInfo[];
/**
* Gets or sets the watermark rotation angle.
*/
rotationAngle: number;
/**
* Gets or sets the watermark text.
*/
text: string;
constructor(init?: Partial<WatermarkText>);
collectFilesContent(_resultFilesContent: Array<any>): void;
validate(): void;
}