This repository has been archived on 2026-03-26. You can view files and clone it, but cannot push or open issues or pull requests.

11 lines
314 B
TypeScript

/**
* @desc An interface that represents an entry in the file system.
* @prop path {string} Path to the entry, name is included.
* @prop name {string} Name of the entry.
* @prop directory {boolean} Entry is a directory.
*/
export interface entry {
path: string;
name: string;
directory: boolean;
}