mirror of
https://github.com/Jellify-Music/App.git
synced 2026-01-25 12:38:39 -06:00
9 lines
202 B
TypeScript
9 lines
202 B
TypeScript
import { JellifyLibrary } from "./JellifyLibrary";
|
|
|
|
export interface JellifyServer {
|
|
url: string;
|
|
name: string;
|
|
version: string;
|
|
startUpComplete: boolean;
|
|
library?: JellifyLibrary;
|
|
} |