소스 검색

add IDictFirstMeaningResponse

visuddhinanda 3 년 전
부모
커밋
e54c3fd80d
1개의 변경된 파일10개의 추가작업 그리고 0개의 파일을 삭제
  1. 10 0
      dashboard/src/components/api/Dict.ts

+ 10 - 0
dashboard/src/components/api/Dict.ts

@@ -73,3 +73,13 @@ export interface ICaseListResponse {
     count: number;
   };
 }
+
+export interface IFirstMeaning {
+  word?: string;
+  meaning?: string;
+}
+export interface IDictFirstMeaningResponse {
+  ok: boolean;
+  message: string;
+  data: IFirstMeaning[];
+}