2
0
visuddhinanda 2 жил өмнө
parent
commit
433f9e869d

+ 5 - 1
dashboard/src/components/api/Corpus.ts

@@ -273,8 +273,12 @@ export interface ISentencePrResponse {
   };
   };
 }
 }
 
 
+export interface ISimSent {
+  sent: string;
+  sim: number;
+}
 export interface ISentenceSimListResponse {
 export interface ISentenceSimListResponse {
   ok: boolean;
   ok: boolean;
   message: string;
   message: string;
-  data: { rows: string[]; count: number };
+  data: { rows: ISimSent[]; count: number };
 }
 }