UNPKG

@vue-ioc/core

Version:

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

9 lines (8 loc) 308 B
import { interfaces } from 'inversify'; import ContainerOptions = interfaces.ContainerOptions; export declare type VueIocPluginOptions = { containerOptions?: ContainerOptions; }; export declare const VueIocPlugin: { install: (Vue: any, { containerOptions }?: VueIocPluginOptions) => void; };