Simplify folders and more typescript migration

This commit is contained in:
prototypa
2023-01-03 22:52:10 -05:00
parent 6777af58f3
commit 046009ec8c
37 changed files with 114 additions and 108 deletions

View File

@ -24,14 +24,14 @@ export interface Post {
}
export interface MetaSEO {
title?: string,
description?: string,
image?: string,
title?: string;
description?: string;
image?: string;
canonical?: string,
noindex?: boolean,
nofollow?: boolean,
canonical?: string | URL;
noindex?: boolean;
nofollow?: boolean;
ogTitle?: string,
ogType?: string,
}
ogTitle?: string;
ogType?: string;
}