Просмотр исходного кода

export interface ISentHistoryData

visuddhinanda 2 лет назад
Родитель
Сommit
129f049e0e
1 измененных файлов с 2 добавлено и 2 удалено
  1. 2 2
      dashboard/src/components/corpus/SentHistory.tsx

+ 2 - 2
dashboard/src/components/corpus/SentHistory.tsx

@@ -6,7 +6,7 @@ import User from "../auth/User";
 import { IUser } from "../auth/UserName";
 import TimeShow from "../general/TimeShow";
 
-interface ISentHistoryData {
+export interface ISentHistoryData {
   id: string;
   sent_uid: string;
   content: string;
@@ -15,7 +15,7 @@ interface ISentHistoryData {
   created_at: string;
 }
 
-interface ISentHistoryListResponse {
+export interface ISentHistoryListResponse {
   ok: boolean;
   message: string;
   data: { rows: ISentHistoryData[]; count: number };