diff options
Diffstat (limited to 'lib/interfaces.ts')
-rw-r--r-- | lib/interfaces.ts | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/interfaces.ts b/lib/interfaces.ts index 974765f..158ac1d 100644 --- a/lib/interfaces.ts +++ b/lib/interfaces.ts @@ -4,19 +4,19 @@ export interface Date { day: string; } -/*export interface Meta { - [key: string]: object; -}*/ +export interface Object { + [key: string]: any; +} export interface Meta { title: string; author: string; - additionalMeta: object; + additionalMeta: object; } export interface FrontMatterObject { body: string; - attributes: Meta; + attributes: Object; } export interface PostApiListEntry { |