Przeglądaj źródła

add IEditableSentence

visuddhinanda 1 rok temu
rodzic
commit
378d79a04b
1 zmienionych plików z 6 dodań i 0 usunięć
  1. 6 0
      dashboard/src/components/api/Corpus.ts

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

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