12 lines
251 B
TypeScript
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;
|
|
};
|