UNPKG

impair

Version:

A framework for building React applications with OOP principles and a layered architecture.

6 lines (5 loc) 272 B
import { Constructor } from '../types'; type Scope = 'resolution-scoped' | 'container-scoped'; export declare function injectable<T extends Constructor>(): (t: T) => void; export declare function injectable<T extends Constructor>(scope: Scope): (t: T) => void; export {};