@jellyfin/sdk
Version:
A TypeScript SDK for Jellyfin.
14 lines (13 loc) • 542 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 http protocol string. */
export declare const HTTP_PROTOCOL = "http:";
/** The https protocol string. */
export declare const HTTPS_PROTOCOL = "https:";
/** The default port for the http protocol. */
export declare const HTTP_PORT = 80;
/** The default port for the https protocol. */
export declare const HTTPS_PORT = 443;