Browse Source

add ICommentAnchorResponse

visuddhinanda 3 years ago
parent
commit
d3f32e3571
1 changed files with 5 additions and 0 deletions
  1. 5 0
      dashboard/src/components/api/Comment.ts

+ 5 - 0
dashboard/src/components/api/Comment.ts

@@ -36,3 +36,8 @@ export interface ICommentListResponse {
   message: string;
   message: string;
   data: { rows: ICommentApiData[]; count: number };
   data: { rows: ICommentApiData[]; count: number };
 }
 }
+export interface ICommentAnchorResponse {
+  ok: boolean;
+  message: string;
+  data: string;
+}