register.d.ts 266 B

123456
  1. import { ExplicitParams } from "./config-loader";
  2. /**
  3. * Installs a custom module load function that can adhere to paths in tsconfig.
  4. * Returns a function to undo paths registration.
  5. */
  6. export declare function register(explicitParams: ExplicitParams): () => void;