UNPKG

@causalfoundry/js-sdk

Version:

Causal Foundry WEB SDK (JS/TS)

11 lines (9 loc) 370 B
import CfCustomNotification from "./CfCustomNotification" import CfBrowserNotification from "./CfBrowserNotification" import { NotificationDispatcher } from "./typings"; export default class NotificationFactory { static getNotificationEngine(): NotificationDispatcher { //return new CfBrowserNotification() return new CfCustomNotification() } }