UNPKG

@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

19 lines (18 loc) 872 B
import { UnifiedPath } from '../system'; import { GitHash_string } from '../types'; export declare class ExportAssetHelper { _outputDir: UnifiedPath; constructor(outputDir: UnifiedPath); outputDir(): UnifiedPath; outputReportPath(title: string): UnifiedPath; outputMetricsDataCollectionPath(title: string): UnifiedPath; outputCPUProfilePath(title: string): UnifiedPath; outputExternalResourceHelperPath(title: string): UnifiedPath; outputPerformancePath(): UnifiedPath; outputExecutionDetailsPath(): UnifiedPath; outputAccumulatedReportPath(): UnifiedPath; titleFromReportFilePath(reportFilePath: UnifiedPath): string; static historyReportFileName(timestamp: number, commitHash: GitHash_string | undefined): string; allReportPathsInOutputDir(): UnifiedPath[]; allExternalResourcePathsInOutputDir(): UnifiedPath[]; }