mirror of
https://github.com/jakejarvis/jarv.is.git
synced 2025-04-26 19:08:26 -04:00
31 lines
510 B
TypeScript
31 lines
510 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;
|
|
};
|
|
|
|
export type RepoType = {
|
|
name: string;
|
|
url: string;
|
|
description?: string;
|
|
language?: {
|
|
name: string;
|
|
color?: string;
|
|
};
|
|
stars?: number;
|
|
forks?: number;
|
|
updatedAt: string;
|
|
};
|