UNPKG

recoder-code

Version:

Complete AI-powered development platform with ML model training, plugin registry, real-time collaboration, monitoring, infrastructure automation, and enterprise deployment capabilities

10 lines (9 loc) 398 B
import type { Config } from '@jest/types'; import type { CompilerOptions } from 'typescript'; type TsPathMapping = Exclude<CompilerOptions['paths'], undefined>; type JestPathMapping = Config.InitialOptions['moduleNameMapper']; export declare const pathsToModuleNameMapper: (mapping: TsPathMapping, { prefix, useESM }?: { prefix?: string; useESM?: boolean; }) => JestPathMapping; export {};