front-hub/src/__mocks__/showCaseObject.ts

27 lines
562 B
TypeScript
Raw Normal View History

2023-11-05 23:33:40 +00:00
import { showCaseTime } from "./showCaseTime"
import { showCaseVolume } from "./showCaseVolume"
2023-03-23 12:03:08 +00:00
export const showCaseObject: Record<
string,
Record<
string,
{
name: string;
desc: string;
style: {
icon: string;
bgcolor: string;
};
2023-03-23 12:03:08 +00:00
id: string;
privelegeid: string;
2023-03-23 12:03:08 +00:00
amount: number;
price: number;
}[]
>
> = {
2023-11-05 23:33:40 +00:00
templ: { volume: showCaseVolume, time: showCaseTime },
squiz: { volume: showCaseVolume, time: showCaseTime },
reducer: { volume: showCaseVolume, time: showCaseTime },
}