UNPKG

ngx-explorer-dnd

Version:

## _Drag & Drop in Angular like in a desktop explorer!_

13 lines (12 loc) 301 B
/** Enum of the type of the FileFolder class. */ export declare enum FileFolderType { File = 0, Folder = 1 } /** This class can be extended to a component. */ export declare abstract class FileFolder { selected: boolean; type: FileFolderType; position?: number; id?: string; }