front-hub/src/__mocks__/showCaseObject.ts

25 lines
539 B
TypeScript
Raw Normal View History

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