Files
lixiyu-net/types/frontmatter.type.ts
2024-09-26 16:48:47 +08:00

13 lines
281 B
TypeScript

export type TPostFrontmatter = {
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;
closed: boolean | null;
};