interface path.ParsedPathimport { type path } from "https://dotland.deno.dev/x/aleph@v0.2.24/std.ts"; const { ParsedPath } = path; A parsed path object generated by path.parse() or consumed by path.format(). Propertiesroot: stringThe root of the path such as '/' or 'c:' dir: stringThe full directory path such as '/home/user/dir' or 'c:\path\dir' base: stringThe file name including extension (if any) such as 'index.html' ext: stringThe file extension (if any) such as '.html' name: stringThe file name without extension (if any) such as 'index'