mirror of
https://github.com/Azure/setup-helm.git
synced 2026-07-13 11:41:37 +00:00
a517f2ff65
Co-authored-by: taakleton <taakleton@users.noreply.github.com>
11 lines
381 B
TypeScript
11 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;
|