Ver Fonte

add IArticleFtsListResponse

visuddhinanda há 1 ano atrás
pai
commit
c4a0525fb5
1 ficheiros alterados com 9 adições e 0 exclusões
  1. 9 0
      dashboard/src/components/api/Article.ts

+ 9 - 0
dashboard/src/components/api/Article.ts

@@ -235,3 +235,12 @@ export interface ICSParaNavItem {
   start: number;
   start: number;
   content: string;
   content: string;
 }
 }
+
+export interface IArticleFtsListResponse {
+  ok: boolean;
+  message: string;
+  data: {
+    rows: IArticleDataResponse[];
+    page: { size: number; current: number; total: number };
+  };
+}