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

11 lines
381 B
TypeScript
Raw Normal View History

2020-03-02 21:16:42 +08:00
import { Config } from '@jest/types';
2020-01-28 13:08:03 +08:00
export interface TsJestPresets {
2020-03-02 21:16:42 +08:00
transform: Config.InitialOptions['transform'];
2020-01-28 13:08:03 +08:00
testMatch?: string[];
moduleFileExtensions?: string[];
}
export interface CreateJestPresetOptions {
allowJs?: boolean;
}
2020-03-02 21:16:42 +08:00
export declare function createJestPreset({ allowJs }?: CreateJestPresetOptions, from?: Config.InitialOptions): TsJestPresets;