We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5453fc8 commit e601a0cCopy full SHA for e601a0c
src/lib/interfaces.ts
@@ -1,7 +1,6 @@
1
import type { StaticImageData } from "next/image"
2
3
import type {
4
- CrowdinContributor,
5
FileContributor,
6
Frontmatter,
7
Lang,
@@ -164,3 +163,26 @@ export interface IGetInvolvedCard {
164
163
title: string
165
description: string
166
}
+
167
+/**
168
+ * TitleCardList
169
+ */
170
171
+export interface ITitleCardItem {
172
+ title: string
173
+ description: string
174
+ caption?: string
175
+ link?: string
176
+ image?: string
177
+ alt?: string
178
+ id?: number
179
+}
180
181
182
+ * Codeblock
183
184
185
+export interface CodeExample extends ITitleCardItem {
186
+ codeLanguage: string
187
+ code: string
188
0 commit comments