@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
9 lines (8 loc) • 570 B
TypeScript
import { ProfilerConfig } from './ProfilerConfig';
import { UnifiedPath } from '../system/UnifiedPath';
import { IProjectReportExecutionDetailsDuringMeasurement } from '../types';
export declare class ExecutionDetails {
static resolveExecutionDetails(config?: ProfilerConfig): Promise<IProjectReportExecutionDetailsDuringMeasurement>;
static loadFromFile(filePath: UnifiedPath): IProjectReportExecutionDetailsDuringMeasurement | undefined;
static storeToFile(executionDetails: IProjectReportExecutionDetailsDuringMeasurement, filePath: UnifiedPath): void;
}