10 lines
154 B
TypeScript
10 lines
154 B
TypeScript
export type PostMeta = {
|
|
title: string,
|
|
slug?: string,
|
|
description?: string,
|
|
html?: string,
|
|
date: Date,
|
|
tags?: string[],
|
|
draft?: boolean
|
|
};
|