Sfoglia il codice sorgente

add ISentenceWbwListResponse

visuddhinanda 2 anni fa
parent
commit
6444ca629a
1 ha cambiato i file con 6 aggiunte e 0 eliminazioni
  1. 6 0
      dashboard/src/components/api/Corpus.ts

+ 6 - 0
dashboard/src/components/api/Corpus.ts

@@ -282,3 +282,9 @@ export interface ISentenceSimListResponse {
   message: string;
   message: string;
   data: { rows: ISimSent[]; count: number };
   data: { rows: ISimSent[]; count: number };
 }
 }
+
+export interface ISentenceWbwListResponse {
+  ok: boolean;
+  message: string;
+  data: { rows: IWidgetSentEditInner[]; count: number };
+}