Improve Jqhtml_Integration.js documentation with hydration system explanation Add jqhtml-laravel integration packages for traditional Laravel projects 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
9 lines
540 B
TypeScript
9 lines
540 B
TypeScript
import type { CompilerInstance, CompiledOutput, StringMap, TsJestCompileOptions } from '../../types';
|
|
import type { ConfigSet } from '../config/config-set';
|
|
export declare class TsJestCompiler implements CompilerInstance {
|
|
private readonly _compilerInstance;
|
|
constructor(configSet: ConfigSet, runtimeCacheFS: StringMap);
|
|
getResolvedModules(fileContent: string, fileName: string, runtimeCacheFS: StringMap): string[];
|
|
getCompiledOutput(fileContent: string, fileName: string, options: TsJestCompileOptions): CompiledOutput;
|
|
}
|