UNPKG

@vue-ioc/core

Version:

IoC and DI for Vue powered by InversifyJS and inspired by Angular @Module syntactic sugar.

6 lines (5 loc) 215 B
import { ProvidedIn } from '../types'; export interface InjectableOptions { providedIn?: ProvidedIn; } export declare function Injectable(options?: InjectableOptions): (target: any, ...args: any[]) => any;