@arsedizioni/ars-utils 18.2.475 → 18.2.477

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.
@@ -734,9 +734,7 @@ export interface ClipperFileInfo {
734
734
  expiringInfo?: string | null;
735
735
  uniqueId: string;
736
736
  }
737
- export declare class ClipperFolderInfo extends Folder {
738
- teamId?: string | null;
739
- isPrivate?: boolean | null;
737
+ export interface ClipperFolderInfo extends Folder {
740
738
  isMenuOpen?: boolean | null;
741
739
  isOver?: boolean | null;
742
740
  items: ClipperFileInfo[];
@@ -10,19 +10,16 @@ export interface ApiResponse {
10
10
  export interface ApiResult<T> extends ApiResponse {
11
11
  value: T;
12
12
  }
13
- export declare class Folder {
14
- id: string | null;
13
+ export interface Folder extends INode {
15
14
  teamId?: string | null;
16
15
  parentId?: string | null;
17
- parent?: INode | null;
18
16
  position?: number | null;
19
- name?: string | null;
20
17
  isPrivate?: boolean | null;
21
18
  itemsCount?: number | null;
22
19
  subItemsCount?: number | null;
23
20
  }
24
21
  export interface FolderTree extends Folder {
25
- children?: INode[] | null;
22
+ children?: Folder[] | null;
26
23
  path: string;
27
24
  }
28
25
  export interface File<T> {