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
| Name | Type |
|---|---|
description | string |
features | { name: string; value?: string; }[] |
id | string |
name | string |
prices | { currency: string; id: string; period: string; price: number; trialDays: number; }[] |