interface ParsedPathimport { type ParsedPath } from "https://dotland.deno.dev/std@0.119.0/path/mod.ts"; 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'