Sfoglia il codice sorgente

add ICommentAnchorResponse

visuddhinanda 3 anni fa
parent
commit
d3f32e3571
1 ha cambiato i file con 5 aggiunte e 0 eliminazioni
  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;
   data: { rows: ICommentApiData[]; count: number };
 }
+export interface ICommentAnchorResponse {
+  ok: boolean;
+  message: string;
+  data: string;
+}