asposewordscloud
Version:
Aspose.Words Cloud SDK for Node.js
30 lines (29 loc) • 835 B
TypeScript
import { AttributeInfo } from '../internal/attributeInfo';
import { WordsResponse } from './wordsResponse';
export declare const importsMapPublicKeyResponse: {
WordsResponse: typeof WordsResponse;
};
/**
* REST response for RSA public key info.
*/
export declare class PublicKeyResponse extends WordsResponse {
/**
* Attribute type map
*/
static attributeTypeMap: Array<AttributeInfo>;
/**
* Returns attribute type map
*/
static getAttributeTypeMap(): AttributeInfo[];
/**
* Gets or sets RSA key exponent as Base64 string.
*/
exponent: string;
/**
* Gets or sets RSA key modulus as Base64 string.
*/
modulus: string;
constructor(init?: Partial<PublicKeyResponse>);
collectFilesContent(_resultFilesContent: Array<any>): void;
validate(): void;
}