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

2
ts/index.ts Normal file
View File

@ -0,0 +1,2 @@
export * from './smartsitemap.classes.smartsitemap';
export * from './smartsitemap.classes.sitemapnews';

View File

@ -0,0 +1,7 @@
import * as plugins from './smartsitemap.plugins';
export class SitemapNews {
public readFromRssFeed() {
}
}

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;
}
}

View File

@ -0,0 +1,5 @@
import * as smartxml from '@pushrocks/smartxml';
export {
smartxml
};