mirror of
https://github.com/JamesIves/github-pages-deploy-action.git
synced 2023-12-15 20:03:39 +08:00
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;
|