mirror of
https://github.com/Jellify-Music/App.git
synced 2026-05-08 04:19:34 -05:00
10 lines
223 B
TypeScript
10 lines
223 B
TypeScript
import { JellifyLibrary } from "./JellifyLibrary";
|
|
|
|
export interface JellifyServer {
|
|
url: string;
|
|
address: string;
|
|
name: string;
|
|
version: string;
|
|
startUpComplete: boolean;
|
|
library?: JellifyLibrary;
|
|
} |