mirror of
https://github.com/Jellify-Music/App.git
synced 2026-04-19 07:51:35 -05: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;
|
|
} |