import { ProjectFileSystem } from '@sap/artifact-management-base-types'; export default class PathUtil { /** * Since the path would be relative to the root, in case of win OS, * we need to find the correct root drive and we need to prefix the path with the correct root drive (C:, D: etc.) */ static getLocationForWindows(path: string, rootPath: string): string; static getExternalServiceInfo(fs: ProjectFileSystem): Promise>; static isLCAPProject(fs: ProjectFileSystem): Promise; }