소스 검색

export interface ISentHistoryData

visuddhinanda 2 년 전
부모
커밋
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 { IUser } from "../auth/UserName";
 import TimeShow from "../general/TimeShow";
 import TimeShow from "../general/TimeShow";
 
 
-interface ISentHistoryData {
+export interface ISentHistoryData {
   id: string;
   id: string;
   sent_uid: string;
   sent_uid: string;
   content: string;
   content: string;
@@ -15,7 +15,7 @@ interface ISentHistoryData {
   created_at: string;
   created_at: string;
 }
 }
 
 
-interface ISentHistoryListResponse {
+export interface ISentHistoryListResponse {
   ok: boolean;
   ok: boolean;
   message: string;
   message: string;
   data: { rows: ISentHistoryData[]; count: number };
   data: { rows: ISentHistoryData[]; count: number };