Jelajahi Sumber

refactor(types): 添加 Feature 接口

添加了 Feature 接口,定义了包含 img、title、subtitle 和 href 属性的结构。
nahida 8 bulan lalu
induk
melakukan
7181977e6e
1 mengubah file dengan 7 tambahan dan 0 penghapusan
  1. 7 0
      src/types/index.ts

+ 7 - 0
src/types/index.ts

@@ -0,0 +1,7 @@
+
+interface Feature {
+  img: string
+  title: string
+  subtitle: string
+  href: string
+}