store log กับ type

This commit is contained in:
oat_dev 2024-07-11 11:38:45 +07:00
parent b4b64a1267
commit 3f225d2d58
2 changed files with 82 additions and 2 deletions

View file

@ -11,4 +11,17 @@ interface ResRound {
startDate: Date;
}
export type { ResRound };
interface ResLog {
endTimeStamp: Date;
endpoint: string;
host: string;
logType: string;
method: string;
processTime: number;
responseCode: number;
startTimeStamp: Date;
systemName: string;
tId: string;
}
export type { ResRound, ResLog };