6 lines
71 B
TypeScript
6 lines
71 B
TypeScript
export type Section = {
|
|
id: string;
|
|
title: string;
|
|
level: 2 | 3;
|
|
};
|