smartfeed/ts/index.ts

9 lines
260 B
TypeScript
Raw Normal View History

2020-10-25 14:02:03 +00:00
import { Feed, IFeedOptions } from './smartfeed.classes.feed';
2020-10-25 00:09:33 +00:00
import * as plugins from './smartfeed.plugins';
2020-10-25 14:02:03 +00:00
export class Smartfeed {
public createFeed(optionsArg: IFeedOptions) {
const feedVersion = new Feed(optionsArg);
return feedVersion;
}
}