Files
lixiyu-net/types/toc.type.ts

6 lines
82 B
TypeScript
Raw Normal View History

2023-12-25 17:21:39 +08:00
export type TTOCItem = {
level: number;
title: string;
anchorId: string;
};