@vector-im/matrix-bot-sdk
Version:
TypeScript/JavaScript SDK for Matrix bots and appservices
27 lines (26 loc) • 942 B
TypeScript
/// <reference types="node" />
/// <reference types="node" />
import { EncryptedFile, MatrixClient } from ".";
export interface ContentScannerResult {
info: string;
clean: boolean;
}
export interface ContentScannerErrorResult {
info: string;
reason: string;
}
export declare class MatrixContentScannerError extends Error {
readonly body: ContentScannerErrorResult;
constructor(body: ContentScannerErrorResult);
}
/**
* API client for https://github.com/element-hq/matrix-content-scanner-python.
*/
export declare class MatrixContentScannerClient {
readonly client: MatrixClient;
constructor(client: MatrixClient);
scanContent(mxcUrl: string): Promise<ContentScannerResult>;
scanContentEncrypted(file: EncryptedFile): Promise<ContentScannerResult>;
downloadContent(mxcUrl: string): ReturnType<MatrixClient["downloadContent"]>;
downloadEncryptedContent(file: EncryptedFile): Promise<Buffer>;
}