refactor: ts3gotify to standalone module

This commit is contained in:
2025-01-08 18:57:51 +01:00
parent 6ed44211c4
commit f62a5570ae
6 changed files with 175 additions and 145 deletions

View File

@@ -1,3 +1,8 @@
export type Mode = "connect" | "disconnect" | "moved" | "message";
export type LogLevel = "error" | "info" | "debug";
export type GotifyConfig = {
app: string;
title: string;
};