asposewordscloud
Version: 
Aspose.Words Cloud SDK for Node.js
32 lines (31 loc) • 984 B
TypeScript
import { AttributeInfo } from '../internal/attributeInfo';
import { FileLink } from './fileLink';
import { WordsResponse } from './wordsResponse';
export declare const importsMapReplaceTextResponse: {
    FileLink: typeof FileLink;
    WordsResponse: typeof WordsResponse;
};
/**
 * The REST response with a number of occurrences of the captured text in the document.
 */
export declare class ReplaceTextResponse extends WordsResponse {
    /**
     * Attribute type map
     */
    static attributeTypeMap: Array<AttributeInfo>;
    /**
     * Returns attribute type map
     */
    static getAttributeTypeMap(): AttributeInfo[];
    /**
     * Gets or sets the link to the document.
     */
    documentLink: FileLink;
    /**
     * Gets or sets the number of occurrences of the captured text in the document.
     */
    matches: number;
    constructor(init?: Partial<ReplaceTextResponse>);
    collectFilesContent(_resultFilesContent: Array<any>): void;
    validate(): void;
}