mirror of
https://github.com/mastermindzh/rickvanlieshout.com
synced 2025-02-06 02:22:37 +01:00
13 lines
221 B
TypeScript
13 lines
221 B
TypeScript
interface Frontmatter {
|
|
date: string;
|
|
title: string;
|
|
category: string;
|
|
template: string;
|
|
description?: string;
|
|
tags?: Array<string>;
|
|
socialImage?: string;
|
|
disqusId?: string;
|
|
}
|
|
|
|
export default Frontmatter;
|