Files
astroplate/types/index.d.ts
T
somrat sorkar b169d93ec9 format code
2023-05-21 12:44:58 +06:00

14 lines
203 B
TypeScript

export type Feature = {
button: button;
image: string;
bulletpoints: string[];
content: string;
title: string;
};
export type Button = {
enable: boolean;
label: string;
link: string;
};