@jellyfin/sdk
Version:
A TypeScript SDK for Jellyfin.
17 lines (16 loc) • 665 B
TypeScript
/**
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
/** The default http port for Jellyfin servers. */
export declare const JF_HTTP_PORT = 8096;
/** The default https port for Jellyfin servers. */
export declare const JF_HTTPS_PORT = 8920;
/**
* Gets a list of address candidates url strings
* from a provided url address string.
* @param input A server url address string.
* @returns A list of potential server addresses.
*/
export declare function getAddressCandidates(input: string): Array<string>;