mirror of
https://github.com/jakejarvis/jarv.is.git
synced 2025-04-27 17:30:28 -04:00
18 lines
312 B
TypeScript
18 lines
312 B
TypeScript
export type NoteMetaType = {
|
|
title: string;
|
|
htmlTitle?: string;
|
|
date: string;
|
|
slug: string;
|
|
permalink: string;
|
|
description?: string;
|
|
image?: string;
|
|
tags?: string[];
|
|
readingMins?: number;
|
|
noComments?: boolean;
|
|
};
|
|
|
|
export type NoteType = {
|
|
frontMatter: NoteMetaType;
|
|
mdxSource: string;
|
|
};
|