UNPKG

tsioc

Version:

tsioc is AOP, Ioc container, via typescript decorator

12 lines (11 loc) 308 B
import { ActionComponent } from './actions/index'; export declare class ActionFactory { /** * create action by action type. type in 'CoreActions' * * @param {string} type * @returns {ActionComponent} * @memberof ActionFactory */ create(type: string): ActionComponent; }