Files
lixiyu-net/types/frontmatter.type.ts
2023-12-25 17:21:39 +08:00

12 lines
251 B
TypeScript

export type TFrontmatter = {
title: string;
time: string;
tags: string[] | null;
subtitle: string | null;
summary: string | null;
coverURL: string | null;
pin: boolean | null;
noPrompt: boolean | null;
allowShare: boolean | null;
};