Reviewed-on: #11 Co-authored-by: Timo Behrendt <t.behrendt@t00n.de> Co-committed-by: Timo Behrendt <t.behrendt@t00n.de>
9 lines
184 B
TypeScript
9 lines
184 B
TypeScript
export type Mode = "connect" | "disconnect" | "moved" | "message";
|
|
|
|
export type LogLevel = "error" | "info" | "debug";
|
|
|
|
export type GotifyConfig = {
|
|
app: string;
|
|
title: string;
|
|
};
|