server-ts: Fix most errors in bnote

This commit is contained in:
Elian Doran
2024-02-17 10:56:27 +02:00
parent f9ba8ca87d
commit 9aec3390dd
10 changed files with 359 additions and 362 deletions

View File

@@ -12,7 +12,7 @@ function newEntityId() {
return randomString(12);
}
function randomString(length: number) {
function randomString(length: number): string {
return randtoken.generate(length);
}