mirror of
https://github.com/mastermindzh/rickvanlieshout.com
synced 2025-01-15 00:01:31 +01:00
14 lines
222 B
TypeScript
14 lines
222 B
TypeScript
|
interface Frontmatter {
|
||
|
date: string;
|
||
|
title: string;
|
||
|
category: string;
|
||
|
template: string;
|
||
|
description?: string;
|
||
|
tags?: Array<string>;
|
||
|
socialImage?: {
|
||
|
publicURL: string;
|
||
|
};
|
||
|
}
|
||
|
|
||
|
export default Frontmatter;
|