github-pages-deploy-action/node_modules/ts-jest/dist/config/config-set.d.ts

12 lines
493 B
TypeScript
Raw Normal View History

2020-03-31 20:42:07 +08:00
import { Config } from '@jest/types';
import { Logger } from 'bs-logger';
2020-04-30 20:40:07 +08:00
import { TsCompiler, TsJestGlobalOptions } from '../types';
2020-03-31 20:42:07 +08:00
export declare class ConfigSet {
readonly parentOptions?: TsJestGlobalOptions | undefined;
get versions(): Record<string, string>;
get tsCompiler(): TsCompiler;
get tsJestDigest(): string;
readonly logger: Logger;
constructor(jestConfig: Config.ProjectConfig, parentOptions?: TsJestGlobalOptions | undefined, parentLogger?: Logger);
}