HOME


Mini Shell 1.0
Redirecting to https://devs.lapieza.net/iniciar-sesion Redirecting to https://devs.lapieza.net/iniciar-sesion.
DIR: /proc/self/root/usr/share/node_modules/@types/rechoir/
Upload File :
Current File : //proc/self/root/usr/share/node_modules/@types/rechoir/index.d.ts
// Type definitions for rechoir 0.6
// Project: https://github.com/gulpjs/rechoir
// Definitions by: BendingBender <https://github.com/BendingBender>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped

import { Extensions } from 'interpret';

export function prepare(
    config: Extensions,
    filepath: string,
    requireFrom?: string
): true | Attempt[];

export interface Attempt {
    moduleName: string;
    module: any;
    error: Error | null;
}