mirror of
https://github.com/jakejarvis/jarv.is.git
synced 2026-07-20 18:05:56 -04:00
organize types a bit more sanely & bump deps
This commit is contained in:
Vendored
+19
@@ -0,0 +1,19 @@
|
||||
import type { MDXRemoteSerializeResult } from "next-mdx-remote";
|
||||
|
||||
export type NoteType = {
|
||||
frontMatter: {
|
||||
slug: string;
|
||||
permalink: string;
|
||||
date: string;
|
||||
title: string;
|
||||
htmlTitle?: string;
|
||||
description?: string;
|
||||
image?: string;
|
||||
tags?: string[];
|
||||
readingMins?: number;
|
||||
noComments?: boolean;
|
||||
};
|
||||
|
||||
// the final, compiled JSX by next-mdx-remote; see lib/parse-notes.ts
|
||||
source: MDXRemoteSerializeResult;
|
||||
};
|
||||
Reference in New Issue
Block a user