@univerjs/sheets-ui 0.6.10-nightly.202504271606 → 0.6.10-nightly.202504281607

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.
@@ -17,6 +17,7 @@ interface ISheetPrintComponentContext extends ISheetPrintContext {
17
17
  spreadsheet: Spreadsheet;
18
18
  }
19
19
  export declare class SheetPrintInterceptorService extends Disposable {
20
+ private _printComponentMap;
20
21
  readonly interceptor: InterceptorManager<{
21
22
  PRINTING_RANGE: import('@univerjs/core').IInterceptor<IRange, {
22
23
  unitId: string;
@@ -26,5 +27,7 @@ export declare class SheetPrintInterceptorService extends Disposable {
26
27
  PRINTING_DOM_COLLECT: import('@univerjs/core').IInterceptor<DisposableCollection, ISheetPrintContext>;
27
28
  }>;
28
29
  constructor();
30
+ registerPrintComponent(componentKey: string, printingComponentKey: string): void;
31
+ getPrintComponent(componentKey: string): string | undefined;
29
32
  }
30
33
  export {};