fix(core): update

This commit is contained in:
2020-10-28 17:43:58 +00:00
parent 35680b135d
commit d03b37690f
6 changed files with 97 additions and 43 deletions

View File

@ -1,3 +1,17 @@
export interface ISitemapYaml {
daily: string[];
}
export interface IRssItem {
[key: string]: any;
link?: string;
guid?: string;
title?: string;
pubDate?: string;
creator?: string;
content?: string;
isoDate?: string;
categories?: string[];
contentSnippet?: string;
enclosure?: any;
}