版博士V2.0程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

пре 1 година
123456789
  1. /// <reference types="node" />
  2. import { TransformOptions, JITIOptions } from "./types";
  3. type Require = typeof require;
  4. export interface JITI extends Require {
  5. transform: (opts: TransformOptions) => string;
  6. register: () => () => void;
  7. }
  8. export default function createJITI(_filename: string, opts?: JITIOptions, parentModule?: typeof module, requiredModules?: Record<string, typeof module>): JITI;
  9. export {};