internal model

This commit is contained in:
rca 2024-07-21 22:48:50 +09:00
parent ed8d26c53e
commit 2192e9a0af

8
src/models/internal.ts Normal file
View File

@ -0,0 +1,8 @@
interface HistoryItem {
id: string;
name: string;
reward: number;
isPaid: boolean;
}
export type { HistoryItem };