implemented frontend including separate message system; started to implement backend

This commit is contained in:
User
2026-03-10 14:48:48 +01:00
committed by Jannik Luboeinski
parent 4275cbd795
commit 78d5352a48
1058 changed files with 101527 additions and 1 deletions

19
yjs-poll/node_modules/lib0/environment.d.ts generated vendored Normal file
View File

@@ -0,0 +1,19 @@
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