Skip to main content

TypeAlias.FeatureLabels

type FeatureLabels = {
common: {
included: string;
notIncluded: string;
tailorMade: string;
};
features: Record<string, {
label: string;
type: "custom" | "quantity" | "switch";
unit?: string;
values?: Record<string, string>;
}>;
locale: "en-US" | "fr-FR" | "es-ES" | "it-IT";
};

Type Declaration

NameType
common{ included: string; notIncluded: string; tailorMade: string; }
common.includedstring
common.notIncludedstring
common.tailorMadestring
featuresRecord<string, { label: string; type: "custom"
locale"en-US"