front-hub/src/__mocks__/showCaseObject.ts
2023-11-06 02:48:07 +03:00

27 lines
562 B
TypeScript

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;
privelegeid: string;
amount: number;
price: number;
}[]
>
> = {
templ: { volume: showCaseVolume, time: showCaseTime },
squiz: { volume: showCaseVolume, time: showCaseTime },
reducer: { volume: showCaseVolume, time: showCaseTime },
}