first_commit

This commit is contained in:
2026-01-12 12:43:50 +01:00
parent c75b3e9563
commit 69e186a7f1
15289 changed files with 1616360 additions and 1944 deletions
+14
View File
@@ -0,0 +1,14 @@
import { Options } from "yargs";
import { Config } from "@jest/types";
//#region src/run.d.ts
declare function run(maybeArgv?: Array<string>, project?: string): Promise<void>;
declare function buildArgv(maybeArgv?: Array<string>): Promise<Config.Argv>;
//#endregion
//#region src/args.d.ts
declare const options: {
[key: string]: Options;
};
//#endregion
export { buildArgv, run, options as yargsOptions };