UNPKG

@carlosv2/glue

Version:

Dependency injection library that stays out of the way

11 lines 468 B
import type { DefinitionContext, RunningContext } from '../context/index.js'; import { Value } from '../value.js'; export declare class TagObject extends Value { private readonly name; constructor(context: DefinitionContext, name: string); protected assemble(context: RunningContext): Promise<unknown>; } export declare class TagList extends TagObject { protected assemble(context: RunningContext): Promise<unknown>; } //# sourceMappingURL=tag.d.ts.map