/** A location in the file tree. */
export interface FileTreeLocation {
  /** The full path of the location including the name. */
  path: string;
  /** The local name of the location. */
  name: string;
}
