Skip to main content

TypeAlias.Plan

type Plan = {
description: string;
features: {
name: string;
value?: string;
}[];
id: string;
name: string;
prices: {
currency: string;
id: string;
period: string;
price: number;
trialDays: number;
}[];
};

Type Declaration

NameType
descriptionstring
features{ name: string; value?: string; }[]
idstring
namestring
prices{ currency: string; id: string; period: string; price: number; trialDays: number; }[]