Преглед изворни кода

add ICommentAnchorResponse

visuddhinanda пре 3 година
родитељ
комит
d3f32e3571
1 измењених фајлова са 5 додато и 0 уклоњено
  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;
+}