Explorar el Código

add IArticleFtsListResponse

visuddhinanda hace 1 año
padre
commit
c4a0525fb5
Se han modificado 1 ficheros con 9 adiciones y 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 };
+  };
+}