瀏覽代碼

add ISentenceWbwListResponse

visuddhinanda 2 年之前
父節點
當前提交
6444ca629a
共有 1 個文件被更改,包括 6 次插入0 次删除
  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 };
+}