fix(core): update

This commit is contained in:
2021-01-03 02:48:45 +00:00
parent 114cd1900b
commit b8befa85fa
4 changed files with 31 additions and 5 deletions

View File

@@ -75,7 +75,7 @@ export class SmartSitemap {
/**
* parses a sitemap
*/
public async parseSitemap(sitemapXmlArg: string) {
public async parseSitemap(sitemapXmlArg: string): Promise<interfaces.IParsedSiteMap> {
return (new plugins.smartxml.SmartXml()).parseXmlToObject(sitemapXmlArg);
}
}