14 lines
347 B
TypeScript
14 lines
347 B
TypeScript
|
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;
|
||
|
}
|
||
|
}
|