mirror of
https://github.com/actions/setup-python.git
synced 2024-11-10 05:41:06 +07: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;
|