@carlosv2/glue
Version:
Dependency injection library that stays out of the way
7 lines • 301 B
TypeScript
import { type Expression } from 'typescript';
import { Importer } from './importer.js';
export declare abstract class Compilable {
protected compileArg(importer: Importer, value: unknown): Expression;
abstract compile(importer: Importer): Expression;
}
//# sourceMappingURL=compilable.d.ts.map