mirror of
https://git.mirrors.martin98.com/https://github.com/actions/setup-python
synced 2025-08-02 05:30:39 +08:00
11 lines
236 B
TypeScript
11 lines
236 B
TypeScript
type JestResolverOptions = {
|
|
basedir: string;
|
|
defaultResolver: (request: string, opts: any) => string,
|
|
extensions?: Array<string>,
|
|
};
|
|
|
|
export default function resolve(
|
|
request: string,
|
|
options: JestResolverOptions,
|
|
): string;
|