interface StatProps {
category: string;
description: string;
displayPriorityInCategory?: number;
hideAtValue?: number;
label: string;
name: string;
scenarioRandomizable?: boolean;
show: Partial<
{
animals?: boolean;
developmentalStageFilter?: string;
drones?: boolean;
entities?: boolean;
modsLoaded?: string[];
undefined?: boolean;
},
>;
value: {
default: number;
max?: number;
min?: number;
style?: ToStringStyle;
};
}