diff options
author | Patryk Niedźwiedziński <pniedzwiedzinski19@gmail.com> | 2020-01-28 12:18:47 +0100 |
---|---|---|
committer | Patryk Niedźwiedziński <pniedzwiedzinski19@gmail.com> | 2020-01-28 12:18:47 +0100 |
commit | 74ee8edb555ef128112378f828c636bc04533b31 (patch) | |
tree | fe4a09d720f9437bc0dc418180c9cf11f4d0a14b /lib/interfaces.ts | |
parent | 9f75ff1d2d5ebf34c040474e836e125f80253365 (diff) | |
download | kronikarz-74ee8edb555ef128112378f828c636bc04533b31.tar.gz kronikarz-74ee8edb555ef128112378f828c636bc04533b31.zip |
Fix remove attributes
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 { |