jabb-astro-components
Version:
UI Components for web development
37 lines (34 loc) • 824 B
TypeScript
export {};
declare global {
namespace Price {
/**
*
*/
type AmountType = {
month: number;
year: number;
};
/**
* comment
*/
export interface Price1 {
title: string;
toogle: Button.Toogle;
price: {
title: string;
description: string;
button: Button.Button;
amount: AmountType;
className?: string;
note?: string;
//
benefits: string[];
popular?: {
text: string;
className?: string;
};
}[];
cents?: number;
}
}
}