dts-jest
Version:
A preprocessor for Jest to snapshot test TypeScript declaration (.d.ts) files
10 lines (9 loc) • 390 B
TypeScript
import * as JestTypes from '@jest/types';
import * as JestReporters from '@jest/reporters';
export declare class Reporter implements JestReporters.Reporter {
global_config: JestTypes.Config.GlobalConfig;
constructor(global_config: JestTypes.Config.GlobalConfig);
onRunStart(): void;
getLastError(): void;
onRunComplete(contexts: Set<JestReporters.TestContext>): void;
}