mirror of
https://github.com/ajnart/homarr.git
synced 2026-03-01 18:00:55 +01:00
7 lines
246 B
TypeScript
7 lines
246 B
TypeScript
import { Integration } from "../../base/integration";
|
|
import type { Notification } from "./notification";
|
|
|
|
export abstract class NotificationsIntegration extends Integration {
|
|
public abstract getNotificationsAsync(): Promise<Notification[]>;
|
|
}
|