mirror of
https://github.com/estruyf/vscode-front-matter.git
synced 2026-05-01 19:12:30 +02:00
10 lines
185 B
TypeScript
10 lines
185 B
TypeScript
export interface PageFrontMatter {
|
|
title: string;
|
|
slug: string;
|
|
description: string;
|
|
date: string;
|
|
lastmod: string;
|
|
content: string;
|
|
fileName: string;
|
|
weight?: number;
|
|
} |