dochub-sdk 0.1.228 → 0.1.230
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.
- package/interfaces/datalake.ts +2 -2
- package/interfaces/ui.ts +1 -1
- package/package.json +1 -1
package/interfaces/datalake.ts
CHANGED
@@ -440,7 +440,7 @@ export interface IDocHubDataLake {
|
|
440
440
|
* @param context - Контекст редактирования файла. Необходим для связных редакторов и конструкторов.
|
441
441
|
* @returns - Компонент редактора, если открытие оказалось успешным
|
442
442
|
*/
|
443
|
-
openFileDiffer(ver1: IDocHubFileVersion, ver2: IDocHubFileVersion, options?: IDocHubDiffOptions): Promise<
|
443
|
+
openFileDiffer(ver1: IDocHubFileVersion, ver2: IDocHubFileVersion, options?: IDocHubDiffOptions): Promise<void>;
|
444
444
|
|
445
445
|
/**
|
446
446
|
* Запрос на открытие визуализатора различий на просмотр. Необязательно будет выполнен.
|
@@ -490,7 +490,7 @@ export interface IDocHubDataLake {
|
|
490
490
|
* @param context - Контекст редактирования файла. Необходим для связных редакторов и конструкторов.
|
491
491
|
* @returns - Компонент редактора, если открытие оказалось успешным
|
492
492
|
*/
|
493
|
-
openFileEditor(uri: string, context?: IDocHubFileEditorContext): Promise<
|
493
|
+
openFileEditor(uri: string, context?: IDocHubFileEditorContext): Promise<void>;
|
494
494
|
|
495
495
|
/**
|
496
496
|
* Запрос на завершение пользовательского редактирования файла. Не обязательно будет выполнен.
|
package/interfaces/ui.ts
CHANGED