@arsedizioni/ars-utils 18.2.347 → 18.2.350

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.
@@ -10,7 +10,7 @@ export interface ApiResponse {
10
10
  export interface ApiResult<T> extends ApiResponse {
11
11
  value: T;
12
12
  }
13
- export interface Folder {
13
+ export interface Folder extends INode {
14
14
  id: string | null;
15
15
  teamId?: string | null;
16
16
  parentId?: string | null;
@@ -20,7 +20,7 @@ export interface Folder {
20
20
  itemsCount?: number | null;
21
21
  subItemsCount?: number | null;
22
22
  }
23
- export interface FolderTree extends Folder, INode {
23
+ export interface FolderTree extends Folder {
24
24
  children?: FolderTree[] | null;
25
25
  path: string;
26
26
  }