All checks were successful
Build / build (22) (push) Successful in 37s
Build / build (18) (push) Successful in 1m3s
Build / build (20) (push) Successful in 1m6s
Build / build (18) (pull_request) Successful in 39s
Build / build (20) (pull_request) Successful in 1m1s
Build / build (22) (pull_request) Successful in 1m4s
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>;
|