UNPKG

@vert/core

Version:

Library to build OOP applications which are based on Vue.

13 lines (12 loc) 293 B
import { TConstructor } from '../types'; /** * Injectable decorator. */ declare function Injectable(): any; /** * Check whether a class is injected. * * @param target */ declare function checkIsInjected(target: TConstructor): boolean; export { Injectable, checkIsInjected };