UNPKG

@types/require-from-string

Version:
23 lines (20 loc) 778 B
/** * Load module from string in Node. */ declare function requireFromString(code: string, options?: requireFromString.Options): any; declare function requireFromString(code: string, filename?: string, options?: requireFromString.Options): any; declare namespace requireFromString { interface Options { /** * List of `paths`, that will be appended to module `paths`. * Useful when you want to be able require modules from these paths. */ appendPaths?: string[] | undefined; /** * List of `paths`, that will be preppended to module `paths`. * Useful when you want to be able require modules from these paths. */ prependPaths?: string[] | undefined; } } export = requireFromString;