fix(core): update

This commit is contained in:
2020-10-25 14:02:03 +00:00
parent 1875949e99
commit 3485bebc1e
6 changed files with 78 additions and 8 deletions

View File

@@ -1,3 +1,9 @@
import { Feed, IFeedOptions } from './smartfeed.classes.feed';
import * as plugins from './smartfeed.plugins';
export let standardExport = 'Hi there! :) This is an exported string';
export class Smartfeed {
public createFeed(optionsArg: IFeedOptions) {
const feedVersion = new Feed(optionsArg);
return feedVersion;
}
}