@etherna/sdk-js
Version:
Etherna SDKs for operations on the network
19 lines • 599 B
TypeScript
import type { EthernaIndexClient } from ".";
import type { RequestOptions } from "..";
export declare class IndexModeration {
private instance;
constructor(instance: EthernaIndexClient);
/**
* Delete any comment
* @param id Id of the comment
* @param opts Request options
*/
deleteComment(id: string, opts?: RequestOptions): Promise<boolean>;
/**
* Delete any video
* @param id Id of the video
* @param opts Request options
*/
deleteVideo(id: string, opts?: RequestOptions): Promise<boolean>;
}
//# sourceMappingURL=moderation.d.ts.map