added type definitions

This commit is contained in:
ferdous
2023-05-21 11:42:20 +06:00
parent 1431ce1d35
commit 41cf468580
27 changed files with 115 additions and 58 deletions
+15
View File
@@ -0,0 +1,15 @@
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};