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-06-01 13:42:38 +00:00
|
|
|
|
2023-03-23 12:03:08 +00:00
|
|
|
id: string;
|
2023-06-01 13:42:38 +00:00
|
|
|
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 },
|
|
|
|
}
|