7ad2aa66bb
Co-authored-by: tbarnes94 <tbarnes94@users.noreply.github.com>
10 lines
381 B
TypeScript
10 lines
381 B
TypeScript
import { Config } from '@jest/types';
|
|
export interface TsJestPresets {
|
|
transform: Config.InitialOptions['transform'];
|
|
testMatch?: string[];
|
|
moduleFileExtensions?: string[];
|
|
}
|
|
export interface CreateJestPresetOptions {
|
|
allowJs?: boolean;
|
|
}
|
|
export declare function createJestPreset({ allowJs }?: CreateJestPresetOptions, from?: Config.InitialOptions): TsJestPresets;
|