@univerjs-pro/collaboration 0.10.10 → 0.10.11

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,4 +1,4 @@
1
- import { InterceptorManager } from '@univerjs/core';
1
+ import { IMutationInfo, IUniverInstanceService, InterceptorManager } from '@univerjs/core';
2
2
  /**
3
3
  * During transmission, compression is performed for a specific operation,referencing during transport.
4
4
  * Before send -> compress -> transmission -> ... -> node apply -> decompression -> apply.
@@ -10,10 +10,11 @@ import { InterceptorManager } from '@univerjs/core';
10
10
  */
11
11
  export declare class CompressMutationService {
12
12
  interceptor: InterceptorManager<{
13
- COMPRESS_MUTATION_APPLY: import('@univerjs/core').IInterceptor<import('@univerjs/core').IMutationInfo<object>[], null>;
14
- COMPRESS_MUTATION_SEND: import('@univerjs/core').IInterceptor<import('@univerjs/core').IMutationInfo<object>[], null>;
13
+ COMPRESS_MUTATION_APPLY: import('@univerjs/core').IInterceptor<IMutationInfo<object>[], null>;
14
+ COMPRESS_MUTATION_SEND: import('@univerjs/core').IInterceptor<IMutationInfo<object>[], IUniverInstanceService>;
15
15
  }>;
16
16
  constructor();
17
17
  private _init;
18
18
  private _initSetRangeValues;
19
+ private _handleInsertSheetCompressMutationSend;
19
20
  }