dochub-sdk 0.1.247 → 0.1.248
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.
@@ -31,8 +31,8 @@ export enum DocHubDocumentType {
|
|
31
31
|
@Component
|
32
32
|
export class DocHubDocumentProto extends DocHubComponentProto implements IDocHubEditableComponent {
|
33
33
|
onRefresher: any = null; // Таймер отложенного выполнения обновления
|
34
|
-
followFiles: string[] | undefined;
|
35
|
-
baseURI: string | undefined;
|
34
|
+
followFiles: string[] | undefined = undefined; // Список файлов за изменениями которых нужно следить
|
35
|
+
baseURI: string | undefined = undefined; // URI документа от которого должны разрешаться все относительные ссылки
|
36
36
|
error: string | null = null; // Ошибка
|
37
37
|
isPending = true; // Признак внутренней работы. Например загрузка данных.
|
38
38
|
/**
|