mirror of https://github.com/Squidex/squidex.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
598 B
31 lines
598 B
/*
|
|
* Squidex Headless CMS
|
|
*
|
|
* @license
|
|
* Copyright (c) Squidex UG (haftungsbeschränkt). All rights reserved.
|
|
*/
|
|
|
|
import { AssetPathItem } from '@app/shared/internal';
|
|
|
|
export interface AssetFolderDropdowNode {
|
|
// The child folders.
|
|
children: AssetFolderDropdowNode[];
|
|
|
|
// The parent folder.
|
|
parent: AssetFolderDropdowNode | null;
|
|
|
|
// True if selected.
|
|
isSelected?: boolean;
|
|
|
|
// True if loading
|
|
isLoading?: boolean;
|
|
|
|
// True if loaded
|
|
isLoaded?: boolean;
|
|
|
|
// True if expanded
|
|
isExpanded?: boolean;
|
|
|
|
// The folder.
|
|
item: AssetPathItem;
|
|
}
|
|
|