UNPKG

badman-core

Version:

badman-core is the layer what all the badman packages depended,or can be used as a tool kit.

17 lines (16 loc) 325 B
export declare enum BeanType { Singleton = 0, Prototype = 1 } export default interface BeanObject<T> { beanName?: string; type?: BeanType; constructor: { new (...args: any[]): T; }; args?: any[]; bean?: T; lazyInit?: boolean; initMethod?: string; destroyMethod?: string; }