uyem
Version:
WebRTC client-server SFU application
39 lines • 1.71 kB
TypeScript
/******************************************************************************************
* Repository: https://github.com/kolserdav/werift-sfu-react.git
* File name: constants.ts
* Author: Sergey Kolmiller
* Email: <uyem.ru@gmail.com>
* License: MIT
* License text: See in LICENSE file
* Copyright: kolserdav, All rights reserved (c)
* Create Date: Wed Aug 24 2022 14:14:09 GMT+0700 (Krasnoyarsk Standard Time)
******************************************************************************************/
import { MessageType, SendMessageArgs } from '../types/interfaces';
export declare const LOG_LEVEL: number;
export declare const DEFAULT_PORT = "3001";
export declare const HEADLESS = true;
export declare const VIEWPORT: {
width: number;
height: number;
};
export declare const PORT: number;
export declare const DATABASE_URL: string;
export declare const CLOUD_DIR_PATH: string;
export declare const CORS: string;
export declare const APP_URL: string;
export declare const STUN_SERVER: string;
export declare const SENT_RTCP_INTERVAL = 1000;
export declare const STOP_RECORDING_MESSAGE: SendMessageArgs<MessageType.SET_RECORDING>;
export declare const CERT_PEM: string;
export declare const KEY_PEM: string;
export declare const IS_DEV: boolean;
export declare const IS_CI: boolean;
export declare const ICE_PORT_MIN: number;
export declare const ICE_PORT_MAX: number;
export declare const RECORD_WIDTH_DEFAULT = 640;
export declare const RECORD_HEIGHT_DEFAULT = 480;
export declare const AUTH_UNIT_ID_DEFAULT = "default";
export declare const VIDEO_REGEX: RegExp;
export declare const TMP_REGEX: RegExp;
export declare const WEBM_REGEX: RegExp;
//# sourceMappingURL=constants.d.ts.map