Futa Arai 2 лет назад
Родитель
Сommit
9a4e0e1d1e
1 измененных файлов с 3 добавлено и 3 удалено
  1. 3 3
      apps/app/src/features/page-bulk-export/interfaces/page-bulk-export.ts

+ 3 - 3
apps/app/src/features/page-bulk-export/interfaces/page-bulk-export.ts

@@ -19,13 +19,13 @@ export interface IPageBulkExportJob {
 }
 }
 
 
 export interface IPageBulkExportResult {
 export interface IPageBulkExportResult {
-  attachment: Ref<IAttachment>, // upload result
+  attachment: Ref<IAttachment>,
   expireAt: Date, // the date at which downloading of result expires
   expireAt: Date, // the date at which downloading of result expires
 }
 }
 
 
 // snapshot of page info to upload
 // snapshot of page info to upload
 export interface IPageBulkExportPageInfo {
 export interface IPageBulkExportPageInfo {
   pageBulkExportJob: Ref<IPageBulkExportJob>,
   pageBulkExportJob: Ref<IPageBulkExportJob>,
-  path: string, // page path when export was executed
-  revision: Ref<IRevision>, // page revision when export was executed
+  path: string, // page path when export was stared
+  revision: Ref<IRevision>, // page revision when export was stared
 }
 }