mirror of
https://github.com/Azure/k8s-deploy.git
synced 2026-06-27 07:09:26 +08:00
08d466b6ab
Co-authored-by: Oliver King <oking3@uncc.edu>
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;
|