/// import { IPath } from "./i-path.js"; import { resolve, parse, ParsedPath } from "node:path"; export abstract class APath implements IPath { public parsedValue: ParsedPath; public serializedValue: string; public constructor(serializedPath: string) { this.serializedValue = resolve(serializedPath); this.parsedValue = parse(serializedPath); } };