sass-template-common 0.4.13 → 0.4.15
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -635,6 +635,7 @@ export declare const formatNewsMeta: (news: NewListResponseData | undefined, con
|
|
|
635
635
|
keywords?: undefined;
|
|
636
636
|
openGraph?: undefined;
|
|
637
637
|
twitter?: undefined;
|
|
638
|
+
article?: undefined;
|
|
638
639
|
} | {
|
|
639
640
|
title: string;
|
|
640
641
|
robots: string;
|
|
@@ -670,6 +671,13 @@ export declare const formatNewsMeta: (news: NewListResponseData | undefined, con
|
|
|
670
671
|
height: string | number;
|
|
671
672
|
}[];
|
|
672
673
|
};
|
|
674
|
+
article: {
|
|
675
|
+
published_time: string;
|
|
676
|
+
modified_time: string;
|
|
677
|
+
section: string | undefined;
|
|
678
|
+
author: string;
|
|
679
|
+
tag: Tag[];
|
|
680
|
+
};
|
|
673
681
|
};
|
|
674
682
|
|
|
675
683
|
export declare const FormatScripts: (props: ScriptProps) => JSX.Element | null;
|