2025-02-21 06:32:05 -08:00
|
|
|
import { ITypeCount } from "@/src/types/inventoryTypes/inventoryTypes";
|
|
|
|
|
2023-09-05 07:37:30 -05:00
|
|
|
export interface IOid {
|
2023-06-05 04:16:49 +08:00
|
|
|
$oid: string;
|
|
|
|
}
|
2023-09-11 13:20:07 +02:00
|
|
|
|
|
|
|
export interface IMongoDate {
|
|
|
|
$date: {
|
|
|
|
$numberLong: string;
|
|
|
|
};
|
|
|
|
}
|
2025-02-21 06:32:05 -08:00
|
|
|
|
|
|
|
export interface IReward {
|
|
|
|
items: ITypeCount[];
|
|
|
|
credits: number;
|
|
|
|
}
|
|
|
|
|
|
|
|
export type IJunctionRewards = Record<string, IReward>;
|