Reviewed-on: #982 Co-authored-by: Ordis <134585663+OrdisPrime@users.noreply.github.com> Co-committed-by: Ordis <134585663+OrdisPrime@users.noreply.github.com>
19 lines
332 B
TypeScript
19 lines
332 B
TypeScript
import { ITypeCount } from "@/src/types/inventoryTypes/inventoryTypes";
|
|
|
|
export interface IOid {
|
|
$oid: string;
|
|
}
|
|
|
|
export interface IMongoDate {
|
|
$date: {
|
|
$numberLong: string;
|
|
};
|
|
}
|
|
|
|
export interface IReward {
|
|
items: ITypeCount[];
|
|
credits: number;
|
|
}
|
|
|
|
export type IJunctionRewards = Record<string, IReward>;
|