This commit is contained in:
Marco
2025-04-30 18:58:08 +02:00
commit d0b50cfff1
66 changed files with 19009 additions and 0 deletions

1938
server/ModuleServerApi.d.ts vendored Normal file

File diff suppressed because it is too large Load Diff

2
server/server.ts Normal file
View File

@@ -0,0 +1,2 @@
declare const api: ModuleServerApi;
api.onNewClient((client) => {});

10
server/tsconfig.json Normal file
View File

@@ -0,0 +1,10 @@
{
"compilerOptions": {
"module": "commonjs",
"noImplicitAny": true,
"target": "ES2020"
},
"include": [
"*.ts"
]
}