jest-allure2-reporter
Version:
Idiomatic Jest reporter for Allure Framework
10 lines (9 loc) • 351 B
TypeScript
import { FileNavigator } from './index';
export declare class FileNavigatorCache {
#private;
resolve: (filePath: string) => Promise<FileNavigator | undefined>;
hasScannedSourcemap: (filePath: string) => boolean;
scanSourcemap: (filePath: string) => Promise<void>;
clear(): void;
static readonly instance: FileNavigatorCache;
}