mirror of
https://github.com/Azure/setup-kubectl.git
synced 2025-12-14 14:11:23 +00:00
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;
|