UNPKG

@ayanaware/bento

Version:

Modular runtime framework designed to solve complex tasks

8 lines (7 loc) 315 B
import { EntityReference } from '../entities/types/EntityReference'; export interface Injections { key: string | symbol; reference: EntityReference; } export declare function getInjections(target: Function): Array<Injections>; export declare function Inject(reference?: EntityReference): PropertyDecorator;