aboutsummaryrefslogtreecommitdiff
path: root/node_modules/jest-pnp-resolver/index.d.ts
blob: 1acbbac822a44540d6f9f393d81640ac576a373b (plain)
1
2
3
4
5
6
7
8
9
10
type JestResolverOptions = {
  basedir: string;
  defaultResolver: (request: string, opts: any) => string,
  extensions?: Array<string>,
};

export default function resolve(
  request: string,
  options: JestResolverOptions,
): string;