@allofshop/aos-sdk-nodejs
Version:
AOS SDK for NodeJS
8 lines (7 loc) • 624 B
TypeScript
import * as lite from '@allofshop/aos-sdk-nodejs-lite';
import { CreateDto, UpdateOneByIdDto } from './type';
export declare function createReviewComment(reviewId: string, body: CreateDto): Promise<{}>;
export declare function getReviewComment(reviewId: string, commentId: string): Promise<{}>;
export declare function updateReviewComment(reviewId: string, commentId: string, body: UpdateOneByIdDto): Promise<{}>;
export declare function deleteReviewComment(reviewId: string, commentId: string): Promise<{}>;
export declare function getReviewComments(reviewId: string, query: any): Promise<lite.AllOfShopResponse<unknown>>;