memento-dev/app/libs/sections.ts

7 lines
86 B
TypeScript

export type Section = {
id: string;
title: string;
level: 2 | 3;
path: string;
};