import {CTX_OPTIONS} from "../@types/types"; /** * @param path * @desc BIFlowApplicationContext 으로 초기화 한다. * @see Configration,ComponentScan */ export default function BIFlowApplicationContext(value?:CTX_OPTIONS){ return function(constructor:T) { return class extends constructor { constructor(...args: any[]) { super(args); } } }; }