mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-05 00:59:29 +08:00
9 lines
376 B
Text
9 lines
376 B
Text
/// <reference types="node" />
|
|
import { TransformOptions, JITIOptions } from './types';
|
|
declare type Require = typeof require;
|
|
export interface JITI extends Require {
|
|
transform: (opts: TransformOptions) => string;
|
|
register: () => (() => void);
|
|
}
|
|
export default function createJITI(_filename: string, opts?: JITIOptions, parentModule?: typeof module): JITI;
|
|
export {};
|