@oaklean/profiler-core
Version:
Part of the @oaklean suite. It provides all basic functions to work with the `.oak` file format. It allows parsing the `.oak` file format as well as tools for analyzing the measurement values. It also provides all necessary capabilities required for prec
10 lines (9 loc) • 471 B
TypeScript
import { ExternalResourceHelper } from './ExternalResourceHelper';
import { UnifiedPath } from '../system/UnifiedPath';
export declare class NodeModuleUtils {
static getParentModuleFromPath(path: UnifiedPath): UnifiedPath | undefined;
static nodeModuleFromFilePath(externalResourceHelper: ExternalResourceHelper, relativeFilePathUrl: UnifiedPath): {
relativeNodeModulePath: UnifiedPath | null;
nodeModule: import("..").NodeModule | null;
};
}