[AAE-11496] Make aca-shared buildable (#2916)

This commit is contained in:
Bartosz Sekuła
2023-01-24 20:36:26 +01:00
committed by GitHub
parent 113b5a89e7
commit 87c1c2b5df
18 changed files with 124 additions and 41 deletions

View File

@@ -0,0 +1,14 @@
/*
* Copyright © 2005 - 2021 Alfresco Software, Ltd. All rights reserved.
*
* License rights for this program may be obtained from Alfresco Software, Ltd.
* pursuant to a written agreement and any use of this program without such an
* agreement is prohibited.
*/
import { MinimalNodeEntity, MinimalNodeEntryEntity } from '@alfresco/js-api';
export abstract class DocumentBasePageService {
abstract canUpdateNode(node: MinimalNodeEntity): boolean;
abstract canUploadContent(node: MinimalNodeEntryEntity): boolean;
}