import { BackendConfig } from "../types/config"; import { Notification } from "../types/notification"; export abstract class Backend { constructor(config: BackendConfig) { } abstract notify(notification: Notification): void; }