UNPKG

@carlosv2/glue

Version:

Dependency injection library that stays out of the way

13 lines 515 B
import { type Expression } from 'typescript'; import { Compilable } from '../compilable.js'; import { Importer } from '../importer.js'; export declare class Importation extends Compilable { private readonly path; private readonly symbol; private constructor(); compile(importer: Importer): Expression; static module(path: string): Importation; static default(path: string): Importation; static named(path: string, symbol: string): Importation; } //# sourceMappingURL=importation.d.ts.map