Files
astroplate/types/index.d.ts
T
2023-05-21 11:42:20 +06:00

15 lines
259 B
TypeScript

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