smartfeed/ts/index.ts
2020-10-25 14:02:03 +00:00

9 lines
260 B
TypeScript

import { Feed, IFeedOptions } from './smartfeed.classes.feed';
import * as plugins from './smartfeed.plugins';
export class Smartfeed {
public createFeed(optionsArg: IFeedOptions) {
const feedVersion = new Feed(optionsArg);
return feedVersion;
}
}