mirror of
https://github.com/10h30/astroplate.git
synced 2026-07-11 18:56:06 +09:00
14 lines
203 B
TypeScript
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;
|
|
};
|