chore: clean up parsedcontent types

This commit is contained in:
eggy
2023-05-24 12:25:31 -04:00
parent 006c1494ca
commit 528e09a26f
6 changed files with 13 additions and 13 deletions

2
shared/types.d.ts vendored
View File

@@ -24,3 +24,5 @@ interface StoryParsedContent extends ParsedContent {
readingTime: ReadingTime;
nopreview?: boolean;
}
type AnyParsedContent = BlogParsedContent | StoryParsedContent;