/*! * Copyright (c) Microsoft Corporation and contributors. All rights reserved. * Licensed under the MIT License. */ /** * The sequence number which can be seen by all ops. * * This is useful in the context of snapshot loading, rollback, among other * scenarios. * * @internal */ export declare const UniversalSequenceNumber = 0; /** * The sequence number of an op before it is acked. * * @internal */ export declare const UnassignedSequenceNumber = -1; /** * @internal */ export declare const TreeMaintenanceSequenceNumber = -2; /** * @internal */ export declare const LocalClientId = -1; /** * @internal */ export declare const NonCollabClient = -2; /** * Used as the client id for operations that were squashed upon resubmission and should therefore * never be seen by other clients. */ export declare const SquashClient = -3; //# sourceMappingURL=constants.d.ts.map