Files
FrenoCorp/node_modules/lib0/environment.d.ts
Michael Freno 7c684a42cc FRE-600: Fix code review blockers
- Consolidated duplicate UndoManagers to single instance
- Fixed connection promise to only resolve on 'connected' status
- Fixed WebSocketProvider import (WebsocketProvider)
- Added proper doc.destroy() cleanup
- Renamed isPresenceInitialized property to avoid conflict

Co-Authored-By: Paperclip <noreply@paperclip.ing>
2026-04-25 00:08:01 -04:00

19 lines
809 B
TypeScript

export const isNode: boolean;
export const isBrowser: boolean;
export const isMac: boolean;
export function hasParam(name: string): boolean;
export function getParam(name: string, defaultVal: string): string;
export function getVariable(name: string): string | null;
export function getConf(name: string): string | null;
export function ensureConf(name: string): string;
export function hasConf(name: string): boolean;
export const production: boolean;
/**
* Color is enabled by default if the terminal supports it.
*
* Explicitly enable color using `--color` parameter
* Disable color using `--no-color` parameter or using `NO_COLOR=1` environment variable.
* `FORCE_COLOR=1` enables color and takes precedence over all.
*/
export const supportsColor: boolean;
//# sourceMappingURL=environment.d.ts.map