declare enum EntryType {
    FILE = 1,
    DIRECTORY = 2,
    UNKNOWN = 3
}
export default EntryType;
