1 | import type { Config } from '@jest/types';
|
2 | import type { CompilerOptions } from 'typescript';
|
3 | type TsPathMapping = Exclude<CompilerOptions['paths'], undefined>;
|
4 | type JestPathMapping = Config.InitialOptions['moduleNameMapper'];
|
5 | export declare const pathsToModuleNameMapper: (mapping: TsPathMapping, { prefix, useESM }?: {
|
6 | prefix?: string;
|
7 | useESM?: boolean;
|
8 | }) => JestPathMapping;
|
9 | export {};
|