13 lines
179 B
TypeScript
13 lines
179 B
TypeScript
export type Faq = Section[];
|
|
|
|
export type Section = {
|
|
name: string;
|
|
items: Question[];
|
|
};
|
|
|
|
export type Question = {
|
|
title: string;
|
|
content: string;
|
|
isOpen?: boolean;
|
|
};
|