1
mirror of https://github.com/jakejarvis/jarv.is.git synced 2026-01-15 11:12:57 -05:00

clean up strict types a bit more

This commit is contained in:
2022-06-13 12:01:35 -04:00
parent 1776173cab
commit a63ea35463
15 changed files with 363 additions and 53 deletions

2
types/note.d.ts vendored
View File

@@ -12,7 +12,7 @@ export type NoteFrontMatter = {
noComments?: boolean;
};
export type Note = {
export type NoteWithSource = {
// yaml metadata
frontMatter: NoteFrontMatter;