Explorar o código

add IArticleFtsListResponse

visuddhinanda hai 1 ano
pai
achega
c4a0525fb5
Modificáronse 1 ficheiros con 9 adicións e 0 borrados
  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;
   content: string;
 }
+
+export interface IArticleFtsListResponse {
+  ok: boolean;
+  message: string;
+  data: {
+    rows: IArticleDataResponse[];
+    page: { size: number; current: number; total: number };
+  };
+}