/** * Instances of this class represent a path in the filesystem. * FilePath instances are immutable, and each unique path is stored as a singleton * in a cache. FilePath instances cannot be created normally: they must be created * or retrieved via the static #FilePath.getInstance() method. */ export default class FilePath { private static cache; readonly value: string; private constructor(); static getInstance(value: string): FilePath; static sortFilePaths(filePaths: Array): Array; isAbsolute(): boolean; isRelative(): boolean; join(...paths: Array): FilePath; relativeTo(destination: FilePath): FilePath; toString(): string; } //# sourceMappingURL=FilePath.d.ts.map