fix(core): update

This commit is contained in:
2020-10-25 22:12:38 +00:00
commit c75a4e0fec
15 changed files with 11418 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
import { SitemapNews } from './smartsitemap.classes.sitemapnews';
import * as plugins from './smartsitemap.plugins';
export class SmartSitemap {
constructor() {}
/**
* creates a sitemap for news
*/
public createSmartsitemapNews(): SitemapNews {
const sitemapNewsInstance = new SitemapNews();
return sitemapNewsInstance;
}
}