Files
release-action/node_modules/ts-jest/dist/presets/create-jest-preset.d.ts
Nick Cipollo 8f5d96dce1
Some checks failed
PR Checks / check_pr (push) Has been cancelled
Prepare v1.8.2 release
2021-03-21 20:02:09 -04:00

8 lines
288 B
TypeScript

import type { Config } from '@jest/types';
import type { TsJestPresets } from '../types';
interface CreateJestPresetOptions {
allowJs?: boolean;
}
export declare function createJestPreset({ allowJs }?: CreateJestPresetOptions, from?: Config.InitialOptions): TsJestPresets;
export {};