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

29
yjs-poll/node_modules/yjs/dist/src/structs/Skip.d.ts generated vendored Normal file
View File

@@ -0,0 +1,29 @@
export const structSkipRefNumber: 10;
/**
* @private
*/
export class Skip extends AbstractStruct {
delete(): void;
/**
* @param {Skip} right
* @return {boolean}
*/
mergeWith(right: Skip): boolean;
/**
* @param {UpdateEncoderV1 | UpdateEncoderV2} encoder
* @param {number} offset
*/
write(encoder: UpdateEncoderV1 | UpdateEncoderV2, offset: number): void;
/**
* @param {Transaction} transaction
* @param {StructStore} store
* @return {null | number}
*/
getMissing(transaction: Transaction, store: StructStore): null | number;
}
import { AbstractStruct } from "./AbstractStruct.js";
import { UpdateEncoderV1 } from "../utils/UpdateEncoder.js";
import { UpdateEncoderV2 } from "../utils/UpdateEncoder.js";
import { Transaction } from "../utils/Transaction.js";
import { StructStore } from "../utils/StructStore.js";
//# sourceMappingURL=Skip.d.ts.map