forked from quic-issues/427e7578-d7bf-49c8-aee9-2dd999e25316
implemented frontend including separate message system; started to implement backend
This commit is contained in:
64
yjs-poll/node_modules/yjs/dist/src/structs/ContentBinary.d.ts
generated
vendored
Normal file
64
yjs-poll/node_modules/yjs/dist/src/structs/ContentBinary.d.ts
generated
vendored
Normal file
@@ -0,0 +1,64 @@
|
||||
export class ContentBinary {
|
||||
/**
|
||||
* @param {Uint8Array} content
|
||||
*/
|
||||
constructor(content: Uint8Array);
|
||||
content: Uint8Array;
|
||||
/**
|
||||
* @return {number}
|
||||
*/
|
||||
getLength(): number;
|
||||
/**
|
||||
* @return {Array<any>}
|
||||
*/
|
||||
getContent(): Array<any>;
|
||||
/**
|
||||
* @return {boolean}
|
||||
*/
|
||||
isCountable(): boolean;
|
||||
/**
|
||||
* @return {ContentBinary}
|
||||
*/
|
||||
copy(): ContentBinary;
|
||||
/**
|
||||
* @param {number} offset
|
||||
* @return {ContentBinary}
|
||||
*/
|
||||
splice(offset: number): ContentBinary;
|
||||
/**
|
||||
* @param {ContentBinary} right
|
||||
* @return {boolean}
|
||||
*/
|
||||
mergeWith(right: ContentBinary): boolean;
|
||||
/**
|
||||
* @param {Transaction} transaction
|
||||
* @param {Item} item
|
||||
*/
|
||||
integrate(transaction: Transaction, item: Item): void;
|
||||
/**
|
||||
* @param {Transaction} transaction
|
||||
*/
|
||||
delete(transaction: Transaction): void;
|
||||
/**
|
||||
* @param {StructStore} store
|
||||
*/
|
||||
gc(store: StructStore): void;
|
||||
/**
|
||||
* @param {UpdateEncoderV1 | UpdateEncoderV2} encoder
|
||||
* @param {number} offset
|
||||
*/
|
||||
write(encoder: UpdateEncoderV1 | UpdateEncoderV2, offset: number): void;
|
||||
/**
|
||||
* @return {number}
|
||||
*/
|
||||
getRef(): number;
|
||||
}
|
||||
export function readContentBinary(decoder: UpdateDecoderV1 | UpdateDecoderV2): ContentBinary;
|
||||
import { Transaction } from "../utils/Transaction.js";
|
||||
import { Item } from "./Item.js";
|
||||
import { StructStore } from "../utils/StructStore.js";
|
||||
import { UpdateEncoderV1 } from "../utils/UpdateEncoder.js";
|
||||
import { UpdateEncoderV2 } from "../utils/UpdateEncoder.js";
|
||||
import { UpdateDecoderV1 } from "../utils/UpdateDecoder.js";
|
||||
import { UpdateDecoderV2 } from "../utils/UpdateDecoder.js";
|
||||
//# sourceMappingURL=ContentBinary.d.ts.map
|
||||
Reference in New Issue
Block a user