linstrom/frontend-vue/src/stores/remoteServer.ts
mstar 594f87f240
All checks were successful
/ docker (push) Successful in 1m57s
Work on note component
2025-07-18 11:27:20 +02:00

7 lines
117 B
TypeScript

export interface RemoteServer {
id: string;
name: string;
url: string;
isSelf: boolean;
isDead: boolean;
}