mirror of
https://github.com/estruyf/vscode-front-matter.git
synced 2026-03-28 17:42:40 +01:00
17 lines
232 B
TypeScript
17 lines
232 B
TypeScript
|
|
export interface PanelSettings {
|
|
seo: SEO;
|
|
slug: Slug;
|
|
tags: string[];
|
|
categories: string[];
|
|
}
|
|
|
|
export interface SEO {
|
|
title: number;
|
|
description: number;
|
|
}
|
|
|
|
export interface Slug {
|
|
prefix: number;
|
|
suffix: number;
|
|
} |