@likeminds.community/feed-js
Version:
LikeMinds Javascript SDK for chat APIs
15 lines (14 loc) • 465 B
TypeScript
declare class LikeCommentRequest {
postId: string;
commentId: string;
constructor(postId: string, commentId: string);
static builder(): LikeCommentRequestBuilder;
}
export declare class LikeCommentRequestBuilder {
private postId;
private commentId;
setPostId(postId: string): LikeCommentRequestBuilder;
setCommentId(commentId: string): LikeCommentRequestBuilder;
build(): LikeCommentRequest;
}
export default LikeCommentRequest;