mirror of
https://github.com/mastermindzh/rickvanlieshout.com
synced 2024-12-28 07:49:01 +01:00
12 lines
200 B
TypeScript
12 lines
200 B
TypeScript
interface Frontmatter {
|
|
date: string;
|
|
title: string;
|
|
category: string;
|
|
template: string;
|
|
description?: string;
|
|
tags?: Array<string>;
|
|
socialImage?: string;
|
|
}
|
|
|
|
export default Frontmatter;
|