UNPKG

@allofshop/aos-sdk-nodejs

Version:
8 lines (7 loc) 624 B
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>>;