7 lines
86 B
TypeScript
7 lines
86 B
TypeScript
export type Section = {
|
|
id: string;
|
|
title: string;
|
|
level: 2 | 3;
|
|
path: string;
|
|
};
|