9 lines
260 B
TypeScript
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;
|
|
}
|
|
} |